aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-01-14 18:56:33 +0000
committerjhugunin <jhugunin>2003-01-14 18:56:33 +0000
commitf1de2b647b2db6da2dce83d4b0679082e98df784 (patch)
treed0d82d99eacf7116231a4278ddc9497528c6d285 /tests/new
parenta5fb21459045ea1ed295c21836672eecf2ca0242 (diff)
downloadaspectj-f1de2b647b2db6da2dce83d4b0679082e98df784.tar.gz
aspectj-f1de2b647b2db6da2dce83d4b0679082e98df784.zip
renamed "declare dominates" to "declare precedence"
Diffstat (limited to 'tests/new')
-rw-r--r--tests/new/options11/Aspect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/options11/Aspect.java b/tests/new/options11/Aspect.java
index e0c56f519..4dcd5baf0 100644
--- a/tests/new/options11/Aspect.java
+++ b/tests/new/options11/Aspect.java
@@ -21,7 +21,7 @@ aspect AnotherAspect extends Library2 {
class Testing {
static aspect Init {
- declare dominates : Init, Library1, AnotherAspect;
+ declare precedence : Init, Library1, AnotherAspect;
before() : AnotherAspect.targetJoinPoints() {
Main.i = 1;