Browse Source

1.6.12.m1 readme

tags/V1_6_12M1
aclement 13 years ago
parent
commit
194371f23e
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      org.aspectj.matcher/src/org/aspectj/weaver/ResolvedType.java

+ 7
- 1
org.aspectj.matcher/src/org/aspectj/weaver/ResolvedType.java View File

@@ -2264,7 +2264,13 @@ public abstract class ResolvedType extends UnresolvedType implements AnnotatedEl

public void clearInterTypeMungers() {
if (isRawType()) {
getGenericType().clearInterTypeMungers();
ResolvedType genericType = getGenericType();
if (genericType.isRawType()) { // ERROR SITUATION: PR341926
// For some reason the raw type is pointing to another raw form (possibly itself)
System.err.println("DebugFor341926: Type " + this.getName() + " has an incorrect generic form");
} else {
genericType.clearInterTypeMungers();
}
}
// interTypeMungers.clear();
// BUG? Why can't this be clear() instead: 293620 c6

Loading…
Cancel
Save