* m4/classpath.m4 (AC_CHECK_WITH_CLASSPATH_CLASSES): Set BOOTCLASSPATH
[cacao.git] / tests / prop.java
index 549e109fa28d2f2d3d95a4a618c453c37a2a89bc..3d98ef47086d7f9264b48a551a732664d3d9c10c 100644 (file)
@@ -1,5 +1,7 @@
+import java.io.*;
+
 public class prop {
-       public static void main(String [] s) {
-               System.getProperties().save (System.out, "alle properties:");
-               }
-       }
+    public static void main(String [] argv) throws IOException {
+        System.getProperties().store(System.out, "all properties:");
+    }
+}