Cleanup (formatting)

This commit is contained in:
Roman Shevchenko
2016-06-06 11:59:47 +03:00
parent fc58750871
commit 2f17ca8a16
@@ -286,8 +286,7 @@ public class GenericsUtil {
}
public static boolean isFromExternalTypeLanguage(@NotNull PsiType type) {
String internalCanonicalText = type.getInternalCanonicalText();
return internalCanonicalText != null && internalCanonicalText.equals(type.getCanonicalText());
return type.getInternalCanonicalText().equals(type.getCanonicalText());
}
@Contract("null -> null")