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);