From 6c3d2c62b4d752fa85a82535c5c12fb10e975d1e Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 27 Oct 2016 15:03:32 +0300 Subject: [PATCH] Minor --- .../org/jetbrains/kotlin/idea/completion/CompletionSession.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSession.kt b/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSession.kt index f8b000c2baf..fe72e480ed7 100644 --- a/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSession.kt +++ b/idea/idea-completion/src/org/jetbrains/kotlin/idea/completion/CompletionSession.kt @@ -287,8 +287,7 @@ abstract class CompletionSession( return context } - /* TODO: not protected because of KT-9809 */ - data class ReferenceVariants(val imported: Collection, val notImportedExtensions: Collection) + protected data class ReferenceVariants(val imported: Collection, val notImportedExtensions: Collection) protected val referenceVariants: ReferenceVariants? by lazy { if (nameExpression != null && descriptorKindFilter != null) collectReferenceVariants(descriptorKindFilter!!, nameExpression) else null