From 7a0749026dadc13d1e34fd8a0aa7b413f2db8cd4 Mon Sep 17 00:00:00 2001 From: Daniil Ovchinnikov Date: Thu, 29 Aug 2024 20:45:33 +0200 Subject: [PATCH] IJPL-797 `intellij.platform.lang.core` review internal API GitOrigin-RevId: ae89a53cc7daee4a17a0b1c75cb0c0d52732c3ad --- platform/lang-core/{api-dump-unreviewed.txt => api-dump.txt} | 3 --- .../src/com/intellij/openapi/module/InternalModuleType.java | 4 +++- 2 files changed, 3 insertions(+), 4 deletions(-) rename platform/lang-core/{api-dump-unreviewed.txt => api-dump.txt} (99%) diff --git a/platform/lang-core/api-dump-unreviewed.txt b/platform/lang-core/api-dump.txt similarity index 99% rename from platform/lang-core/api-dump-unreviewed.txt rename to platform/lang-core/api-dump.txt index 3814f210f3a1..1b664b5730ab 100644 --- a/platform/lang-core/api-dump-unreviewed.txt +++ b/platform/lang-core/api-dump.txt @@ -427,9 +427,6 @@ c:com.intellij.openapi.actionSystem.LangDataKeys - sf:TARGET_MODULE:com.intellij.openapi.actionSystem.DataKey - sf:TARGET_PSI_ELEMENT:com.intellij.openapi.actionSystem.DataKey - ():V -a:com.intellij.openapi.module.InternalModuleType -- com.intellij.openapi.module.ModuleType -- p:(java.lang.String):V com.intellij.openapi.module.ModuleConfigurationEditor - com.intellij.openapi.options.Configurable - sf:EMPTY:com.intellij.openapi.module.ModuleConfigurationEditor[] diff --git a/platform/lang-core/src/com/intellij/openapi/module/InternalModuleType.java b/platform/lang-core/src/com/intellij/openapi/module/InternalModuleType.java index 420ceafe5ebc..f225a38c331f 100644 --- a/platform/lang-core/src/com/intellij/openapi/module/InternalModuleType.java +++ b/platform/lang-core/src/com/intellij/openapi/module/InternalModuleType.java @@ -1,13 +1,15 @@ -// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. package com.intellij.openapi.module; import com.intellij.ide.util.projectWizard.ModuleBuilder; +import org.jetbrains.annotations.ApiStatus.Internal; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; /** * @author gregsh */ +@Internal public abstract class InternalModuleType extends ModuleType { protected InternalModuleType(@NotNull @NonNls String id) { super(id);