remove unnecessary call to super.get() in CliBindingTrace
This commit is contained in:
+1
-2
@@ -254,11 +254,10 @@ public class CliLightClassGenerationSupport extends LightClassGenerationSupport
|
|||||||
JetDeclaration jetDeclaration = (JetDeclaration) key;
|
JetDeclaration jetDeclaration = (JetDeclaration) key;
|
||||||
if (!JetPsiUtil.isLocal(jetDeclaration)) {
|
if (!JetPsiUtil.isLocal(jetDeclaration)) {
|
||||||
kotlinCodeAnalyzer.resolveToDescriptor(jetDeclaration);
|
kotlinCodeAnalyzer.resolveToDescriptor(jetDeclaration);
|
||||||
|
return super.get(slice, key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.get(slice, key);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
|
|||||||
Reference in New Issue
Block a user