From 9ae4c8e92533a7e6a4face66ac47236f0d378962 Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Sun, 18 Sep 2016 10:08:16 +0200 Subject: [PATCH] remove unused addUISettingsListener --- .../editor-ui-api/src/com/intellij/ide/ui/UISettings.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/platform/editor-ui-api/src/com/intellij/ide/ui/UISettings.java b/platform/editor-ui-api/src/com/intellij/ide/ui/UISettings.java index c0404b16e436..97bdfd80c68b 100644 --- a/platform/editor-ui-api/src/com/intellij/ide/ui/UISettings.java +++ b/platform/editor-ui-api/src/com/intellij/ide/ui/UISettings.java @@ -27,7 +27,6 @@ import com.intellij.openapi.util.IconLoader; import com.intellij.openapi.util.Pair; import com.intellij.openapi.util.SimpleModificationTracker; import com.intellij.openapi.util.SystemInfo; -import com.intellij.openapi.util.registry.Registry; import com.intellij.util.ComponentTreeEventDispatcher; import com.intellij.util.EventDispatcher; import com.intellij.util.PlatformUtils; @@ -161,13 +160,6 @@ public class UISettings extends SimpleModificationTracker implements PersistentS } } - /** - * @deprecated use {@link UISettings#addUISettingsListener(UISettingsListener, Disposable disposable)} instead. - */ - public void addUISettingsListener(UISettingsListener listener) { - myDispatcher.addListener(listener); - } - public void addUISettingsListener(@NotNull final UISettingsListener listener, @NotNull Disposable parentDisposable) { myDispatcher.addListener(listener, parentDisposable); }