mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
remove unused ExtensionPointChangeListener
GitOrigin-RevId: 0f0279679a05d05fcd9b71de5cac02b7fcb9e682
This commit is contained in:
committed by
intellij-monorepo-bot
parent
6b34e9b200
commit
90a843fe8a
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user