Subversion Repository Public Repository

litesoft

Diff Revisions 308 vs 315 for /trunk/Java/ScarPlus/src/com/esotericsoftware/utils/IFileSystem.java

Diff revisions: vs.
  @@ -1,7 +1,5 @@
1 1 package com.esotericsoftware.utils;
2 2
3 - import java.io.*;
4 -
5 3 public interface IFileSystem
6 4 {
7 5 public boolean isWindows();
  @@ -10,8 +8,8 @@
10 8
11 9 public String canonicalCurrentPath();
12 10
13 - public boolean exists(String path);
11 + public boolean exists( String path );
14 12
15 - public String canonicalizeNormalizedExisting(String path) throws IOException;
13 + public String canonicalizeNormalizedExisting( String path );
16 14 }
17 15