From ae4b0c6fe13fd787a484165aed737826f560c52c Mon Sep 17 00:00:00 2001 From: Vladimir Dolzhenko Date: Thu, 11 May 2023 09:56:55 +0000 Subject: [PATCH] Drop KtStubElementTypes#FILE It has been marked as deprecated for a while and targeted to be deleted in 1.9.0 #KT-53781 Merge-request: KT-MR-10082 Merged-by: Vladimir Dolzhenko --- .../kotlin/psi/stubs/elements/KtStubElementTypes.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/compiler/psi/src/org/jetbrains/kotlin/psi/stubs/elements/KtStubElementTypes.java b/compiler/psi/src/org/jetbrains/kotlin/psi/stubs/elements/KtStubElementTypes.java index 51adc5c4872..61628cde218 100644 --- a/compiler/psi/src/org/jetbrains/kotlin/psi/stubs/elements/KtStubElementTypes.java +++ b/compiler/psi/src/org/jetbrains/kotlin/psi/stubs/elements/KtStubElementTypes.java @@ -20,15 +20,6 @@ import com.intellij.psi.tree.TokenSet; import org.jetbrains.kotlin.psi.*; public interface KtStubElementTypes { - /** - * @deprecated use {@link KtFileElementType#INSTANCE}. - * Field is provided for the sake of binary compatibility with external usages. - * - * It will be deleted in 1.9.0. - */ - @Deprecated - KtFileElementType FILE = KtFileElementType.INSTANCE; - KtClassElementType CLASS = new KtClassElementType("CLASS"); KtFunctionElementType FUNCTION = new KtFunctionElementType("FUN"); KtPropertyElementType PROPERTY = new KtPropertyElementType("PROPERTY");