Fix kotlinRefactoringUtil.kt.193 compilation

This commit is contained in:
Vladimir Dolzhenko
2019-09-24 21:03:35 +02:00
parent b00858a886
commit c961de7289
@@ -994,7 +994,7 @@ fun DialogWrapper.showWithTransaction() {
TransactionGuard.submitTransaction(disposable, Runnable { show() }) TransactionGuard.submitTransaction(disposable, Runnable { show() })
} }
fun PsiMethod.checkDeclarationConflict(name: String, conflicts: MultiMap<PsiElement, String>, callables: List<PsiElement>) { fun PsiMethod.checkDeclarationConflict(name: String, conflicts: MultiMap<PsiElement, String>, callables: Collection<PsiElement>) {
containingClass containingClass
?.findMethodsByName(name, true) ?.findMethodsByName(name, true)
// as is necessary here: see KT-10386 // as is necessary here: see KT-10386