Browse Source

332388: test and fix

tags/V1_6_11RC1
aclement 13 years ago
parent
commit
1c970bb02c

+ 2
- 5
weaver/src/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXConverter.java View File

@@ -14,7 +14,6 @@ package org.aspectj.weaver.bcel;
import java.util.HashMap;
import java.util.Map;

import org.aspectj.bridge.Message;
import org.aspectj.util.GenericSignature;
import org.aspectj.util.GenericSignature.SimpleClassTypeSignature;
import org.aspectj.weaver.BoundedReferenceType;
@@ -164,8 +163,7 @@ public class BcelGenericSignatureToTypeXConverter {
inProgressTypeVariableResolutions);
ResolvedType resolvedBound = world.resolve(bound);
if (resolvedBound.isMissing()) {
world.getMessageHandler().handleMessage(
new Message("Unable to find type (for bound): " + resolvedBound.getName(), null, true));
world.getLint().cantFindType.signal("Unable to find type (for bound): " + resolvedBound.getName(), null);
resolvedBound = world.resolve(UnresolvedType.OBJECT);
}
ReferenceType rBound = (ReferenceType) resolvedBound;
@@ -175,8 +173,7 @@ public class BcelGenericSignatureToTypeXConverter {
inProgressTypeVariableResolutions);
ResolvedType resolvedBound = world.resolve(bound);
if (resolvedBound.isMissing()) {
world.getMessageHandler().handleMessage(
new Message("Unable to find type (for bound): " + resolvedBound.getName(), null, true));
world.getLint().cantFindType.signal("Unable to find type (for bound): " + resolvedBound.getName(), null);
resolvedBound = world.resolve(UnresolvedType.OBJECT);
}
ReferenceType rBound = (ReferenceType) resolvedBound;

Loading…
Cancel
Save