aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-12-13 22:19:08 +0000
committeracolyer <acolyer>2005-12-13 22:19:08 +0000
commitb7929e91659708dc27141f587ad236af7bfa8287 (patch)
tree4ab9a88305479e154a499077ef4978fe7d33242d /tests/java5
parente50bf403b26657b4b39a6be0e34b7170dbc788a9 (diff)
downloadaspectj-b7929e91659708dc27141f587ad236af7bfa8287.tar.gz
aspectj-b7929e91659708dc27141f587ad236af7bfa8287.zip
tests and fix for pr119749
Diffstat (limited to 'tests/java5')
-rw-r--r--tests/java5/annotations/ajdkExamples/AnnotationInheritance.aj2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/annotations/ajdkExamples/AnnotationInheritance.aj b/tests/java5/annotations/ajdkExamples/AnnotationInheritance.aj
index 2ca13eba4..1a437183b 100644
--- a/tests/java5/annotations/ajdkExamples/AnnotationInheritance.aj
+++ b/tests/java5/annotations/ajdkExamples/AnnotationInheritance.aj
@@ -23,7 +23,7 @@
pointcut annotatedC2MethodCall() :
call(@SomeAnnotation * C2.aMethod()); // matches nothing
- pointcut annotatedMethodCall() : // CW L16, L17
+ pointcut annotatedMethodCall() : // CW L16
call(@SomeAnnotation * aMethod());
declare warning : annotatedC2MethodCall() : "annotatedC2MethodCall()";