diff options
author | acolyer <acolyer> | 2005-01-17 11:05:53 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-01-17 11:05:53 +0000 |
commit | 35cab775d1ac2fc45f614b4659047b2f291dcd96 (patch) | |
tree | d416d7bc3c066995ea8bcb704aedeb086cd40f1f /tests/pureJava | |
parent | 767d730c50fd21915fed0dd64ad9f40500be0a6b (diff) | |
download | aspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.tar.gz aspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.zip |
java 5 support
Diffstat (limited to 'tests/pureJava')
-rw-r--r-- | tests/pureJava/KeywordAspect.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pureJava/KeywordAspect.java b/tests/pureJava/KeywordAspect.java index 9fcf0c446..b08fc41a3 100644 --- a/tests/pureJava/KeywordAspect.java +++ b/tests/pureJava/KeywordAspect.java @@ -8,7 +8,7 @@ public class KeywordAspect { public void realMain(String[] args) { int aspect = 0; - aspect += 10; + aspect += 10; Tester.checkEqual(aspect, 10); Tester.checkEqual(pointcut, "hi-bye"); |