From: adash Date: Thu, 3 Jan 2008 22:28:49 +0000 (+0000) Subject: fixed array notation X-Git-Tag: preEdgeChange~323 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ebd2227b628df5240333b7d56aa39702916ae38c;p=IRC.git fixed array notation --- diff --git a/Robust/src/Tests/Atomic5.java b/Robust/src/Tests/Atomic5.java index 9d8f3377..bc06b10a 100644 --- a/Robust/src/Tests/Atomic5.java +++ b/Robust/src/Tests/Atomic5.java @@ -8,9 +8,9 @@ public class Atomic5 extends Thread { Integer age; String name; - Atomic5 at5[]; + Atomic5[] at5; atomic { - at5[] = global new Atomic5[4]; + at5 = global new Atomic5[4]; } atomic { for(int i = 0 ; i< 4; i++) {