aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5
diff options
context:
space:
mode:
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()";