remove unused ExtensionPointChangeListener

GitOrigin-RevId: 0f0279679a05d05fcd9b71de5cac02b7fcb9e682
This commit is contained in:
Daniil Ovchinnikov
2024-07-29 15:51:01 +02:00
committed by intellij-monorepo-bot
parent 6b34e9b200
commit 90a843fe8a
4 changed files with 2 additions and 16 deletions

View File

@@ -110,8 +110,6 @@ a:com.intellij.openapi.extensions.ExtensionPointAdapter
com.intellij.openapi.extensions.ExtensionPointAndAreaListener
- com.intellij.openapi.extensions.ExtensionPointListener
- areaReplaced(com.intellij.openapi.extensions.ExtensionsArea):V
com.intellij.openapi.extensions.ExtensionPointChangeListener
- a:extensionListChanged():V
com.intellij.openapi.extensions.ExtensionPointListener
- sf:Companion:com.intellij.openapi.extensions.ExtensionPointListener$Companion
- extensionAdded(java.lang.Object,com.intellij.openapi.extensions.PluginDescriptor):V

View File

@@ -1,11 +1,8 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// 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.extensions;
import org.jetbrains.annotations.NotNull;
/**
* @see ExtensionPointChangeListener
*/
public abstract class ExtensionPointAdapter<T> implements ExtensionPointListener<T> {
@Override
public final void extensionAdded(@NotNull T extension, @NotNull PluginDescriptor pluginDescriptor) {

View File

@@ -1,6 +0,0 @@
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.openapi.extensions;
public interface ExtensionPointChangeListener {
void extensionListChanged();
}

View File

@@ -1,9 +1,6 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// 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.extensions
/**
* See [ExtensionPointChangeListener]
*/
interface ExtensionPointListener<T> {
companion object {
private val EMPTY_ARRAY = arrayOfNulls<ExtensionPointListener<*>?>(0)