From 4466b2c9808438642a10c9ae849348920f048cd4 Mon Sep 17 00:00:00 2001 From: Vladimir Dolzhenko Date: Sun, 8 Jan 2023 21:42:51 +0100 Subject: [PATCH] Mark KtStubElementTypes#FILE will be deleted in 1.9.0 #KT-53781 --- .../kotlin/psi/stubs/elements/KtStubElementTypes.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 0f5cea254c6..8e558e60c92 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 @@ -21,7 +21,9 @@ 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 the future. + * 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;