[python] API: remove 'for removal' flag from deprecated API which aren't going to be removed soon (IDEA-301912)

GitOrigin-RevId: c8d31098d77a0e153a8a67d50253aaa90c5ee98c
This commit is contained in:
Nikolay Chashnikov
2022-09-16 12:19:56 +02:00
committed by intellij-monorepo-bot
parent abb8ff1281
commit 65b8769078
7 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ public interface PyImportElement extends PyElement, PyImportedNameDefiner, StubB
/**
* @deprecated Use {@link #multiResolve()} instead.
*/
@Deprecated(forRemoval = true)
@Deprecated
@Nullable
PsiElement resolve();

View File

@@ -28,7 +28,7 @@ public abstract class PyPsiFacade {
/**
* @deprecated use {@link #createClassByQName(String, PsiElement)} or skeleton may be found
*/
@Deprecated(forRemoval = true)
@Deprecated
@Nullable
public abstract PyClass findClass(String qName);

View File

@@ -45,7 +45,7 @@ public interface PyTargetExpressionStub extends NamedStub<PyTargetExpression>, P
* @deprecated It is our internal API, try to avoid using it.
* It is planned to be removed sooner or later, so please don't rely on this method.
*/
@Deprecated(forRemoval = true)
@Deprecated
@Nullable
<T> T getCustomStub(Class<T> stubClass);