This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / WriteFile.java
diff --git a/Robust/src/Tests/WriteFile.java b/Robust/src/Tests/WriteFile.java
deleted file mode 100644 (file)
index d31430b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-public class WriteFile {
-    public static void main(String []str) {
-       String filename="testfile000";
-       FileOutputStream fos=new FileOutputStream(filename);
-       String st=new String("adsasdasd");
-       fos.write(st.getBytes());
-       fos.close();
-    }
-
-}