[python] cleanup: get rid of unused deprecated API (IDEA-281036)

GitOrigin-RevId: 3ce01c6689410cc147b8b552a1354e7996a6d0f9
This commit is contained in:
Nikolay Chashnikov
2022-01-13 18:58:45 +03:00
committed by intellij-monorepo-bot
parent 5736dff67a
commit 46cc1d78e4
2 changed files with 0 additions and 38 deletions

View File

@@ -70,17 +70,6 @@ public final class PyResolveContext {
return new PyResolveContext(true, true, false, context);
}
/**
* @deprecated Please use {@link PyResolveContext#noProperties(TypeEvalContext)}
* to explicitly specify type evaluation context.
*/
@NotNull
@Deprecated
@ApiStatus.ScheduledForRemoval(inVersion = "2022.1")
public static PyResolveContext noProperties() {
return new PyResolveContext(false, false, false, TypeEvalContext.codeInsightFallback(null));
}
@NotNull
public static PyResolveContext noProperties(@NotNull TypeEvalContext context) {
return new PyResolveContext(false, false, false, context);