From b3aa152ba6568bd91218bdef682e700c0644bb36 Mon Sep 17 00:00:00 2001 From: Sergey Ignatov Date: Fri, 21 Jun 2019 16:08:56 +0300 Subject: [PATCH] remove not so popular top hit providers for gui designer and image configurables agreed with SAM GitOrigin-RevId: fef3b21f7f77ced22659982370e547d1ef7dad8f --- images/resources/META-INF/ImagesPlugin.xml | 1 - .../impl/ImagesOptionsTopHitProvider.java | 30 ------------------- .../ui-designer/resources/META-INF/plugin.xml | 1 - .../GuiDesignerOptionsTopHitProvider.java | 16 ---------- 4 files changed, 48 deletions(-) delete mode 100644 images/src/org/intellij/images/options/impl/ImagesOptionsTopHitProvider.java delete mode 100644 plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerOptionsTopHitProvider.java diff --git a/images/resources/META-INF/ImagesPlugin.xml b/images/resources/META-INF/ImagesPlugin.xml index d07e0f174948..e25de97b8e79 100644 --- a/images/resources/META-INF/ImagesPlugin.xml +++ b/images/resources/META-INF/ImagesPlugin.xml @@ -6,7 +6,6 @@ - diff --git a/images/src/org/intellij/images/options/impl/ImagesOptionsTopHitProvider.java b/images/src/org/intellij/images/options/impl/ImagesOptionsTopHitProvider.java deleted file mode 100644 index 58e1de7e2b88..000000000000 --- a/images/src/org/intellij/images/options/impl/ImagesOptionsTopHitProvider.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright 2000-2015 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.intellij.images.options.impl; - -import com.intellij.application.options.editor.EditorOptionsTopHitProviderBase; -import com.intellij.openapi.options.Configurable; -import com.intellij.openapi.project.Project; - -/** - * @author Sergey.Malenkov - */ -public class ImagesOptionsTopHitProvider extends EditorOptionsTopHitProviderBase { - @Override - protected Configurable getConfigurable(Project project) { - return new ImagesConfigurable(); - } -} diff --git a/plugins/ui-designer/resources/META-INF/plugin.xml b/plugins/ui-designer/resources/META-INF/plugin.xml index f0d30a268505..e36991ff0134 100644 --- a/plugins/ui-designer/resources/META-INF/plugin.xml +++ b/plugins/ui-designer/resources/META-INF/plugin.xml @@ -33,7 +33,6 @@ - diff --git a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerOptionsTopHitProvider.java b/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerOptionsTopHitProvider.java deleted file mode 100644 index dfeb5fe81e6b..000000000000 --- a/plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerOptionsTopHitProvider.java +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2000-2019 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.uiDesigner; - -import com.intellij.application.options.editor.EditorOptionsTopHitProviderBase; -import com.intellij.openapi.options.Configurable; -import com.intellij.openapi.project.Project; - -/** - * @author Sergey.Malenkov - */ -final class GuiDesignerOptionsTopHitProvider extends EditorOptionsTopHitProviderBase { - @Override - protected Configurable getConfigurable(Project project) { - return new GuiDesignerConfigurable(project); - } -}