This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / File.java
diff --git a/Robust/src/ClassLibrary/File.java b/Robust/src/ClassLibrary/File.java
deleted file mode 100644 (file)
index 87c3c5e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-public class File {
-  String path;
-
-  public File(String path) {
-    this.path=path;
-  }
-
-  String getPath() {
-    return path;
-  }
-
-  long length() {
-    return nativeLength(path.getBytes());
-  }
-
-  private static native long nativeLength(byte[] pathname);
-}