diff options
author | jhugunin <jhugunin> | 2002-12-18 01:30:18 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-18 01:30:18 +0000 |
commit | 1c483f9189bac49b2eb3a77ca862378838433b1f (patch) | |
tree | 1f5d5f60db31a21296921d742ef5a70b5caa3c38 /tests | |
parent | e9c55d991fc9ac325b3ca73ef1fa675c53fe0558 (diff) | |
download | aspectj-1c483f9189bac49b2eb3a77ca862378838433b1f.tar.gz aspectj-1c483f9189bac49b2eb3a77ca862378838433b1f.zip |
can't use type patterns in target
Diffstat (limited to 'tests')
-rw-r--r-- | tests/new/TypePat.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/TypePat.java b/tests/new/TypePat.java index 149e25741..6e358c0a6 100644 --- a/tests/new/TypePat.java +++ b/tests/new/TypePat.java @@ -76,7 +76,7 @@ aspect A { Tester.event("A.before2: " + thisJoinPoint.getSignature().toShortString()); } - before(): checkCall() && target(Map.En*) { + before(): checkCall() && target(Map.Entry) { Tester.event("A.before3: " + thisJoinPoint.getSignature().toShortString()); } } |