aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/AnnotationAspect02.aj
diff options
context:
space:
mode:
authoraclement <aclement>2005-02-17 15:06:17 +0000
committeraclement <aclement>2005-02-17 15:06:17 +0000
commitfd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b (patch)
treed4e0710d100d2ed0eefa7abef566dadb6d24f731 /tests/java5/annotations/AnnotationAspect02.aj
parent2eb9dd812120f6e8fbfbf59c31ee16d2ff68b032 (diff)
downloadaspectj-fd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b.tar.gz
aspectj-fd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b.zip
Updated with suppression attribute for non-matching advice.
Diffstat (limited to 'tests/java5/annotations/AnnotationAspect02.aj')
-rw-r--r--tests/java5/annotations/AnnotationAspect02.aj4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/java5/annotations/AnnotationAspect02.aj b/tests/java5/annotations/AnnotationAspect02.aj
index ddc3cc48d..00bb10941 100644
--- a/tests/java5/annotations/AnnotationAspect02.aj
+++ b/tests/java5/annotations/AnnotationAspect02.aj
@@ -1,5 +1,5 @@
public aspect AnnotationAspect02 {
- before(): call(@SimpleAnnotation * *(..)) {}
+ @org.aspectj.lang.annotation.SuppressAjWarnings before(): call(@SimpleAnnotation * *(..)) {}
- before(): call( * *(..)) {}
+ @org.aspectj.lang.annotation.SuppressAjWarnings before(): call( * *(..)) {}
}