X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=tests%2Fprop.java;h=3d98ef47086d7f9264b48a551a732664d3d9c10c;hb=b1e40170fdc87a9767ab1984ff7eec6a581b4ead;hp=549e109fa28d2f2d3d95a4a618c453c37a2a89bc;hpb=3a5f5900ebb2b3f0fc418b5a6a0d551db494fc12;p=cacao.git diff --git a/tests/prop.java b/tests/prop.java index 549e109fa..3d98ef470 100644 --- a/tests/prop.java +++ b/tests/prop.java @@ -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:"); + } +}