This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Tests / StringBufferTest.java
diff --git a/Robust/src/Tests/StringBufferTest.java b/Robust/src/Tests/StringBufferTest.java
deleted file mode 100644 (file)
index f68ced0..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-class StringBufferTest {
-    public static void main(String str[]) {
-       String a="hello world";
-       StringBuffer b=new StringBuffer(a);
-       b.append(a);
-       System.printString(b.toString());
-    }
-}