Remove unused code: the only plugin that used it is already updated, and incompatible with master

GitOrigin-RevId: 9bc0e383bd748e08ebd4886b585ccbf0afad9155
This commit is contained in:
Ilya.Kazakevich
2024-08-10 07:19:44 +02:00
committed by intellij-monorepo-bot
parent 49ee16b94c
commit 9a305d4fb2
2 changed files with 0 additions and 23 deletions

View File

@@ -1,16 +0,0 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.jetbrains.extensions.python;
import com.jetbrains.python.nameResolver.FQNamesProvider
import com.jetbrains.python.nameResolver.NameResolverTools
import com.jetbrains.python.psi.PyCallExpression
import org.jetbrains.annotations.ApiStatus
/**
* @deprecated moved to {@link com.jetbrains.python.extensions}
*/
@ApiStatus.ScheduledForRemoval
@Deprecated(message = "Moved to com.jetbrains.python")
fun PyCallExpression.isCalleeName(vararg names: FQNamesProvider): Boolean = NameResolverTools.isCalleeShortCut(this, *names)

View File

@@ -1,7 +0,0 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
/**
* @deprecated moved to {@link com.jetbrains.python.extensions}
*/
@Deprecated(forRemoval = true)
package com.jetbrains.extensions.python;