diff options
author | jhugunin <jhugunin> | 2002-12-30 20:00:34 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-30 20:00:34 +0000 |
commit | c05863091ec392d2b266d70cebd3681eea35680d (patch) | |
tree | 00e695d1633ddff992f659a03a0ce9268cb042ec /tests/new | |
parent | 23e449e656bb9701a586b6b71a2607365edef50e (diff) | |
download | aspectj-c05863091ec392d2b266d70cebd3681eea35680d.tar.gz aspectj-c05863091ec392d2b266d70cebd3681eea35680d.zip |
fixed error
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/VoidAround.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/VoidAround.java b/tests/new/VoidAround.java index 6878041b1..2883c5df0 100644 --- a/tests/new/VoidAround.java +++ b/tests/new/VoidAround.java @@ -26,7 +26,7 @@ aspect A { Tester.expectEvent("Object C.result()"); } // no compile error expected (also note: message jp signatures are wrong?) - void around() : target(C) && call(* r*(..)) { + void around() : target(C) && call(* r*(..)) { // CE can't apply to methods returning Object Tester.event(thisJoinPoint.getSignature().toString()); } } |