summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/complexExample/X4.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/annotations/binding/complexExample/X4.java')
-rw-r--r--tests/java5/annotations/binding/complexExample/X4.java2
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);
}