diff options
author | aclement <aclement> | 2006-03-27 19:10:46 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-03-27 19:10:46 +0000 |
commit | d578125c1bd261349a8c290fbe42e84305111948 (patch) | |
tree | a0670a90952b88cb0554fbd7d9f1af700e127cb7 /tests/java5/annotations | |
parent | c9a60e519d73bb7aa4d8cf4615445089202bd3ad (diff) | |
download | aspectj-d578125c1bd261349a8c290fbe42e84305111948.tar.gz aspectj-d578125c1bd261349a8c290fbe42e84305111948.zip |
switched around.
Diffstat (limited to 'tests/java5/annotations')
-rw-r--r-- | tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj b/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj index 438af6e3f..4226f9b85 100644 --- a/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj +++ b/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj @@ -12,7 +12,7 @@ public aspect AnnotatedAspect08 { declare error: set(* *) : "hum bahbug"; @AnyAnnotation - declare soft : execution(* *) : Exception; + declare soft : Exception: execution(* *(..)); @ConstructorAnnotation declare parents : A implements I; |