Drop KtStubElementTypes#FILE

It has been marked as deprecated for a while and targeted to be deleted in 1.9.0

#KT-53781
This commit is contained in:
Vladimir Dolzhenko
2023-10-14 12:03:36 +02:00
committed by Space Team
parent 3c2be4551b
commit d092e99ae8
@@ -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");