Remove redundant type arguments to fix compilation with FIR

#KT-41835
This commit is contained in:
Dmitriy Novozhilov
2020-09-11 12:30:33 +03:00
parent 324aaaddad
commit 4929417aea
@@ -85,7 +85,7 @@ open class CliBindingTrace @TestOnly constructor() : BindingTraceContext() {
if (key is KtDeclaration) {
if (!KtPsiUtil.isLocal(key)) {
kotlinCodeAnalyzer!!.resolveToDescriptor(key)
return super.get<K, V>(slice, key)
return super.get(slice, key)
}
}
}