This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / ReadFile.java
diff --git a/Robust/src/Tests/ReadFile.java b/Robust/src/Tests/ReadFile.java
deleted file mode 100644 (file)
index ff282ec..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-public class ReadFile {
-    public static void main(String []str) {
-       String filename="testfile000";
-       FileInputStream fis=new FileInputStream(filename);
-       byte x[]=new byte[9];
-       fis.read(x);
-       fis.close();
-       String st=new String(x);
-       System.printString(st);
-    }
-
-}