diff options
author | aclement <aclement> | 2005-02-17 15:06:17 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-02-17 15:06:17 +0000 |
commit | fd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b (patch) | |
tree | d4e0710d100d2ed0eefa7abef566dadb6d24f731 /tests/java5/annotations/binding/complexExample | |
parent | 2eb9dd812120f6e8fbfbf59c31ee16d2ff68b032 (diff) | |
download | aspectj-fd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b.tar.gz aspectj-fd3129964398cbaf66f3ae3c5e3c75ebf7f3a34b.zip |
Updated with suppression attribute for non-matching advice.
Diffstat (limited to 'tests/java5/annotations/binding/complexExample')
-rw-r--r-- | tests/java5/annotations/binding/complexExample/X4.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/annotations/binding/complexExample/X4.java b/tests/java5/annotations/binding/complexExample/X4.java index edfb63ef1..de910fe0f 100644 --- a/tests/java5/annotations/binding/complexExample/X4.java +++ b/tests/java5/annotations/binding/complexExample/X4.java @@ -3,7 +3,7 @@ import a.b.c.A; public aspect X4 { // Error as Color not imported - before(A a): execution(@Color * A+.*(..)) && this(a) { + @org.aspectj.lang.annotation.SuppressAjWarnings before(A a): execution(@Color * A+.*(..)) && this(a) { System.err.println("Before call to "+thisJoinPoint); } |