Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,7 +1,5 @@
1 1 package com.esotericsoftware.filesupport;
2 2
3 - import java.io.*;
4 -
5 3 public interface IFile
6 4 {
7 5 boolean exists();
  @@ -12,6 +10,5 @@
12 10
13 11 String getPath();
14 12
15 - IFile getCanonicalFile()
16 - throws IOException;
13 + IFile getCanonicalFile();
17 14 }