remove unnecessary call to super.get() in CliBindingTrace

This commit is contained in:
Dmitry Jemerov
2015-06-01 20:54:33 +02:00
parent 54b1859aa7
commit aa8adbeddc
@@ -254,11 +254,10 @@ public class CliLightClassGenerationSupport extends LightClassGenerationSupport
JetDeclaration jetDeclaration = (JetDeclaration) key;
if (!JetPsiUtil.isLocal(jetDeclaration)) {
kotlinCodeAnalyzer.resolveToDescriptor(jetDeclaration);
return super.get(slice, key);
}
}
}
return super.get(slice, key);
}
return value;