diff options
Diffstat (limited to 'tests/java5/annotations/binding/complexExample/X.java')
-rw-r--r-- | tests/java5/annotations/binding/complexExample/X.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/java5/annotations/binding/complexExample/X.java b/tests/java5/annotations/binding/complexExample/X.java index b442e3a99..141975a16 100644 --- a/tests/java5/annotations/binding/complexExample/X.java +++ b/tests/java5/annotations/binding/complexExample/X.java @@ -3,11 +3,11 @@ import d.e.f.Color; public aspect X { - before(): call(* *(..)) && @annotation(@Color) { + before(): call(* *(..)) && @annotation(Color) { System.err.println("Before call to "+thisJoinPoint); } - before(): execution(* *(..)) && @annotation(@Color) { + before(): execution(* *(..)) && @annotation(Color) { System.err.println("Before execution of "+thisJoinPoint); } } |