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