Remove redundant type arguments to fix compilation with FIR
#KT-41835
This commit is contained in:
@@ -85,7 +85,7 @@ open class CliBindingTrace @TestOnly constructor() : BindingTraceContext() {
|
|||||||
if (key is KtDeclaration) {
|
if (key is KtDeclaration) {
|
||||||
if (!KtPsiUtil.isLocal(key)) {
|
if (!KtPsiUtil.isLocal(key)) {
|
||||||
kotlinCodeAnalyzer!!.resolveToDescriptor(key)
|
kotlinCodeAnalyzer!!.resolveToDescriptor(key)
|
||||||
return super.get<K, V>(slice, key)
|
return super.get(slice, key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user