diff --git a/java/java-impl/src/com/intellij/codeInsight/intention/impl/CreateClassDialog.java b/java/java-impl/src/com/intellij/codeInsight/intention/impl/CreateClassDialog.java index 203308cab9b8..0fb7c15d69eb 100644 --- a/java/java-impl/src/com/intellij/codeInsight/intention/impl/CreateClassDialog.java +++ b/java/java-impl/src/com/intellij/codeInsight/intention/impl/CreateClassDialog.java @@ -88,7 +88,7 @@ public class CreateClassDialog extends DialogWrapper { } protected Action[] createActions() { - return new Action[]{getOKAction(), getCancelAction(), getHelpAction()}; + return new Action[]{getOKAction(), getCancelAction()}; } public JComponent getPreferredFocusedComponent() { diff --git a/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.form b/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.form deleted file mode 100644 index 9ab918f8a8fb..000000000000 --- a/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.form +++ /dev/null @@ -1,56 +0,0 @@ - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.java b/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.java deleted file mode 100644 index 460a8b3a3af9..000000000000 --- a/plugins/groovy/src/org/jetbrains/plugins/groovy/intentions/conversions/ConvertMapToClassDialog.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2000-2010 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.jetbrains.plugins.groovy.intentions.conversions; - -import com.intellij.openapi.project.Project; -import com.intellij.refactoring.ui.PackageNameReferenceEditorCombo; -import com.intellij.refactoring.ui.RefactoringDialog; - -import javax.swing.*; - -public class ConvertMapToClassDialog extends RefactoringDialog { - private JPanel contentPane; - private PackageNameReferenceEditorCombo myPackageNameReferenceEditorCombo; - private JButton buttonOK; - - public ConvertMapToClassDialog(Project project) { - super(project, true); - } - - @Override - protected void doAction() { - //To change body of implemented methods use File | Settings | File Templates. - } - - @Override - protected JComponent createCenterPanel() { - return null; //To change body of implemented methods use File | Settings | File Templates. - } - - private void createUIComponents() { -// myPackageNameReferenceEditorCombo = new PackageNameReferenceEditorCombo("", getProject(), PackageNameReferenceEditorCombo.); - } -}