diff options
author | jhugunin <jhugunin> | 2003-01-14 18:56:33 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-14 18:56:33 +0000 |
commit | f1de2b647b2db6da2dce83d4b0679082e98df784 (patch) | |
tree | d0d82d99eacf7116231a4278ddc9497528c6d285 /tests/new | |
parent | a5fb21459045ea1ed295c21836672eecf2ca0242 (diff) | |
download | aspectj-f1de2b647b2db6da2dce83d4b0679082e98df784.tar.gz aspectj-f1de2b647b2db6da2dce83d4b0679082e98df784.zip |
renamed "declare dominates" to "declare precedence"
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/options11/Aspect.java | 2 |
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; |