remove unnecessary call to super.get() in CliBindingTrace
This commit is contained in:
+3
-4
@@ -254,12 +254,11 @@ 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