[devkit] API cleanup: mark deprecated unused API for removal (IJPL-156972)

GitOrigin-RevId: fe8cf724c15789fd528b6ed3ab6f032e6ff0cd2e
This commit is contained in:
Nikolay Chashnikov
2024-10-10 20:34:07 +02:00
committed by intellij-monorepo-bot
parent ff01e93549
commit 5841e7f405
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ public enum IntelliJPlatformProduct {
/**
* @deprecated Code With Me Guest is an old name for JetBrains Client
*/
@Deprecated
@Deprecated(forRemoval = true)
CWM_GUEST("CWMG", "Code With Me Guest", PlatformUtils.CWM_GUEST_PREFIX, null, null),
JETBRAINS_CLIENT("JBC", "JetBrains Client", PlatformUtils.JETBRAINS_CLIENT_PREFIX, null, null),
GATEWAY("GW", "Gateway", PlatformUtils.GATEWAY_PREFIX, "com.jetbrains.intellij.gateway:gateway", "idea/gateway:JetBrainsGateway"),

View File

@@ -110,7 +110,7 @@ public final class PsiUtil {
* @deprecated Use {@linkplain IntelliJProjectUtil#markAsIntelliJPlatformProject(Project, Boolean)} instead
*/
@TestOnly
@Deprecated
@Deprecated(forRemoval = true)
public static void markAsIdeaProject(@NotNull Project project, boolean value) {
IntelliJProjectUtil.markAsIntelliJPlatformProject(project, value);
}