From 3c289ade82c55b8488fda52651efea93316e5227 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 16 Jul 2015 17:13:32 +0300 Subject: [PATCH] Removed unused method --- .../kotlin/idea/completion/CompletionSorting.kt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSorting.kt b/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSorting.kt index 892eed26ee8..b3feb91d44b 100644 --- a/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSorting.kt +++ b/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSorting.kt @@ -160,15 +160,6 @@ private class DeclarationRemotenessWeigher(private val file: JetFile) : LookupEl return Weight.default } - private fun DeclarationLookupObject.qualifiedName(): String? { - return if (descriptor != null) { - DescriptorUtils.getFqName(descriptor!!).toString() - } - else { - (psiElement as? PsiClass)?.getQualifiedName() - } - } - private inner class ImportCache { private val preciseImports = HashSet() private val preciseImportPackages = HashSet()