]> source.dussan.org Git - aspectj.git/commitdiff
renamed "declare dominates" to "declare precedence"
authorjhugunin <jhugunin>
Tue, 14 Jan 2003 18:56:33 +0000 (18:56 +0000)
committerjhugunin <jhugunin>
Tue, 14 Jan 2003 18:56:33 +0000 (18:56 +0000)
tests/new/options11/Aspect.java

index e0c56f5195ccb1ea330cffb2b8b51d8c3215e120..4dcd5baf00ec5288687246bd97456e32a6574950 100644 (file)
@@ -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;