changes
[IRC.git] / Robust / src / Tests / Atomic.java
index d51bde754823795183908768542c763fb40c9aae..36cb6ce144174d716090c4488d9f0c1ee5ea038d 100644 (file)
@@ -1,20 +1,14 @@
-public class Array {
+public class Atomic {
     int a;
     public static void main(String[] st) {
-       int a[]=new int[10];
        Integer z;
        atomic {
            z=global new Integer(3);
        }
-       int i=2;
        int q=test(z);
        System.printInt(q);
     }
     public static atomic int test(Integer y) {
-       int x=3;
-       int z;
-       z=y.intValue();
-       return z;
+       return y.intValue();
     }
-
 }