From d092e99ae80efca01090fe1cc8bffd646c8879f1 Mon Sep 17 00:00:00 2001 From: Vladimir Dolzhenko Date: Sat, 14 Oct 2023 12:03:36 +0200 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 --- .../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");