diff options
author | acolyer <acolyer> | 2005-02-17 21:11:31 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-02-17 21:11:31 +0000 |
commit | 900e12978dc17c3f9d7842764a48653712578e9b (patch) | |
tree | 7769a4926bd291dd0b45742ecb7d59a5facd2801 /tests/java5/annotations/binding/complexExample/X.java | |
parent | fdc14b8ff96b4a3c16b7cdf933c16fd9320ee3c1 (diff) | |
download | aspectj-900e12978dc17c3f9d7842764a48653712578e9b.tar.gz aspectj-900e12978dc17c3f9d7842764a48653712578e9b.zip |
@xxx(@Foo) -> @xxx(Foo)
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); } } |