From ebd2227b628df5240333b7d56aa39702916ae38c Mon Sep 17 00:00:00 2001 From: adash Date: Thu, 3 Jan 2008 22:28:49 +0000 Subject: [PATCH] fixed array notation --- Robust/src/Tests/Atomic5.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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++) { -- 2.34.1