mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
[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:
committed by
intellij-monorepo-bot
parent
abb8ff1281
commit
65b8769078
@@ -39,7 +39,7 @@ public interface PyImportElement extends PyElement, PyImportedNameDefiner, StubB
|
||||
/**
|
||||
* @deprecated Use {@link #multiResolve()} instead.
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
@Deprecated
|
||||
@Nullable
|
||||
PsiElement resolve();
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user