Subversion Repository Public Repository

litesoft

Diff Revisions 314 vs 315 for /trunk/Java/ScarPlus/src/com/esotericsoftware/filesupport/IFileFileProxy.java

Diff revisions: vs.
  @@ -2,6 +2,8 @@
2 2
3 3 import java.io.*;
4 4
5 + import com.esotericsoftware.utils.*;
6 +
5 7 public class IFileFileProxy implements IFile
6 8 {
7 9 private final File mFile;
  @@ -37,8 +39,7 @@
37 39
38 40 @Override
39 41 public IFile getCanonicalFile()
40 - throws IOException
41 42 {
42 - return new IFileFileProxy( mFile.getCanonicalFile() );
43 + return new IFileFileProxy( FileUtil.getCanonicalFile( mFile ) );
43 44 }
44 45 }