]> source.dussan.org Git - aspectj.git/commitdiff
removed old 1.0 warnings
authorjhugunin <jhugunin>
Thu, 19 Dec 2002 22:12:38 +0000 (22:12 +0000)
committerjhugunin <jhugunin>
Thu, 19 Dec 2002 22:12:38 +0000 (22:12 +0000)
tests/ajcTests.xml
tests/new/PR573.java
tests/new/PR573_1.java

index ab3caad88eae20788427afd95139251c6ecef8a4..e1e4aba0a859189e2010a1b79898667d57dab268 100644 (file)
       title="pertarget stack overflow getting name of anonymous (Interface) class"
       keywords="from-resolved_10rc3">
         <compile files="PR573.java">
-            <message kind="warning" line="21"/>
         </compile>
         <run class="PR573"/>
     </ajc-test>
       title="pertarget stack overflow getting name of anonymous (Object) class"
       keywords="from-resolved_10rc3">
         <compile files="PR573_1.java">
-            <message kind="warning" line="20"/>
         </compile>
         <run class="PR573_1"/>
     </ajc-test>
index 22efc6de7ce60b6ab6b1512106d9454310d5b4b3..20dfb1ae4b8c8aa52c0b2bc9940846df5aed0aee 100644 (file)
@@ -18,7 +18,7 @@ public class PR573 {
 }
 interface Interface { void m(Object o);}
 
-aspect A pertarget(target(Interface)) { // CW 21 will not match containing aspect
+aspect A pertarget(target(Interface)) { // was a warning in 1.0
     public static int num;
     A(){ Tester.event("A.init" + num++); }
 }
index d9b8bf3dce8e0865a8a675303e9c4e1afec63a4c..e040c068e1478378322a893974155458a35f81c9 100644 (file)
@@ -17,7 +17,7 @@ public class PR573_1 {
     }
 }
 // different stack overflow when using Object, not Interface
-aspect A pertarget(target(Object) && !target(A)) {  // CW 20 will not match containing aspect 
+aspect A pertarget(target(Object) && !target(A)) {  // was a warning in 1.0 
     public static int num;
     A(){ Tester.event("A.init" + num++); }
 }