diff options
author | acolyer <acolyer> | 2004-01-13 11:27:59 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-01-13 11:27:59 +0000 |
commit | 19ed0a21b822004f6f2c688518c4230965a3b512 (patch) | |
tree | 5680a8ccc55b3d2bbe634b38717d08dc6328f214 /tests/new/AroundInnerCalls.java | |
parent | 346fd1c4acfa5360e1a71aa171da283251ef99bf (diff) | |
download | aspectj-19ed0a21b822004f6f2c688518c4230965a3b512.tar.gz aspectj-19ed0a21b822004f6f2c688518c4230965a3b512.zip |
move to Eclipse 3.0 M6 JDT core (v_396). Also makes 1.4 the
default mode (inherited behaviour from JDT).
Diffstat (limited to 'tests/new/AroundInnerCalls.java')
-rw-r--r-- | tests/new/AroundInnerCalls.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/new/AroundInnerCalls.java b/tests/new/AroundInnerCalls.java index 6cdd966a1..64a55caf8 100644 --- a/tests/new/AroundInnerCalls.java +++ b/tests/new/AroundInnerCalls.java @@ -6,11 +6,11 @@ public class AroundInnerCalls { Tester.check("Outer.foo() calls Outer.Inner.mi()"); Tester.check("Outer.foo() calls Outer.InnerRandom.nextHook(..)"); - Tester.check("Outer.InnerRandom.nextHook(..) calls Random.next(..)"); + Tester.check("Outer.InnerRandom.nextHook(..) calls Outer.InnerRandom.next(..)"); Tester.check("Outer.Inner.mi() calls PrintStream.println(..)"); Tester.check("X.toString()"); - Tester.check("Outer.foo() calls Random.nextInt(..)"); + Tester.check("Outer.foo() calls Outer.1.nextInt(..)"); } } @@ -37,7 +37,7 @@ class Outer { aspect A { Object around(): call(* *(..)) && !within(A) { - //System.out.println +// System.out.println Tester.note (thisEnclosingJoinPointStaticPart.getSignature().toShortString() + " calls " + thisJoinPointStaticPart.getSignature().toShortString()); |