enable the scary fix for IDEA-83714 Non-existent class in generic arguments trips the smart auto-completion component

This commit is contained in:
peter
2012-04-26 18:11:12 +02:00
parent 7a2d1d216e
commit 939e034fb4
2 changed files with 1 additions and 3 deletions
@@ -470,11 +470,9 @@ public class PsiResolveHelperImpl implements PsiResolveHelper {
PsiType bound = intersectAllExtends(typeParam, arg);
return new Pair<PsiType, ConstraintType>(bound, ConstraintType.SUPERTYPE);
}
/*
if (psiClass == null && arg instanceof PsiClassType) {
return Pair.create(arg, ConstraintType.EQUALS);
}
*/
return null;
}
if (paramClass == null) return null;