]> source.dussan.org Git - aspectj.git/commitdiff
199130: test and fix - checking aspect bounds for generic aspects
authoraclement <aclement>
Tue, 10 Jun 2008 03:27:53 +0000 (03:27 +0000)
committeraclement <aclement>
Tue, 10 Jun 2008 03:27:53 +0000 (03:27 +0000)
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java

index 744a39090d77b20fad78e659c2e8e9194a7e5ea3..ac2613c9781db42384148cd3a3aca7ba58af4820 100644 (file)
@@ -228,13 +228,6 @@ public class AjLookupEnvironment extends LookupEnvironment implements AnonymousC
         for (int i = lastCompletedUnitIndex + 1; i <= lastUnitIndex; i++) {
             units[i].scope.checkParameterizedTypes();
         }
-        
-               for (int i = lastCompletedUnitIndex +1; i<=lastUnitIndex; i++) {
-                       SourceTypeBinding[] b = units[i].scope.topLevelTypes;
-            for (int j = 0; j < b.length; j++) {
-               verifyAnyTypeParametersMeetBounds(b[j]);
-            }
-               }
                
         for (int i = lastCompletedUnitIndex + 1; i <= lastUnitIndex; i++) {
             SourceTypeBinding[] b = units[i].scope.topLevelTypes;