mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
remove not so popular top hit providers for gui designer and image configurables
agreed with SAM GitOrigin-RevId: fef3b21f7f77ced22659982370e547d1ef7dad8f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0e9677a84a
commit
b3aa152ba6
@@ -6,7 +6,6 @@
|
||||
</extensionPoints>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<search.topHitProvider implementation="org.intellij.images.options.impl.ImagesOptionsTopHitProvider"/>
|
||||
<applicationConfigurable groupId="editor" instance="org.intellij.images.options.impl.ImagesConfigurable" id="Images" displayName="Images"/>
|
||||
<fileEditorProvider implementation="org.intellij.images.editor.impl.ImageFileEditorProvider"/>
|
||||
<selectInTarget implementation="org.intellij.images.thumbnail.impl.ThumbnailSelectInTarget"/>
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
@@ -33,7 +33,6 @@
|
||||
<fileType name="GUI_DESIGNER_FORM" extensions="form"
|
||||
implementationClass="com.intellij.uiDesigner.GuiFormFileType" fieldName="INSTANCE"/>
|
||||
|
||||
<search.topHitProvider implementation="com.intellij.uiDesigner.GuiDesignerOptionsTopHitProvider"/>
|
||||
<projectConfigurable groupId="editor" instance="com.intellij.uiDesigner.GuiDesignerConfigurable" id="project.propGUI" key="title.gui.designer"
|
||||
bundle="messages.UIDesignerBundle"/>
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user