Fixed compilation error (IDEA API changed).

This commit is contained in:
Evgeny Gerashchenko
2014-12-09 15:17:14 +03:00
committed by Nikolay Krasko
parent f09fd923f3
commit f9f75f1155
@@ -593,7 +593,7 @@ public class JetChangeSignatureUsageProcessor implements ChangeSignatureUsagePro
if (processor.processUsage(javaChangeInfo, usage, beforeMethodChange, javaUsageInfos)) break;
}
if (usage instanceof OverriderUsageInfo) {
PsiMethod overridingMethod = ((OverriderUsageInfo)usage).getElement();
PsiMethod overridingMethod = ((OverriderUsageInfo)usage).getOverridingMethod();
if (overridingMethod != null) {
nullabilityPropagator.processMethod(overridingMethod);
}