Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2013-01-03 23:33:36 +0000
committerCamilo Bernal2013-01-04 15:27:25 +0000
commitb6d36f1c5d33844e47499b352477239bd3874147 (patch)
tree35ff36a43df83bf80add7e15117fea159d3139cd /rpmstubby
parent8967413740c9647b6dc860578157b56794267d30 (diff)
downloadorg.eclipse.linuxtools-b6d36f1c5d33844e47499b352477239bd3874147.tar.gz
org.eclipse.linuxtools-b6d36f1c5d33844e47499b352477239bd3874147.tar.xz
org.eclipse.linuxtools-b6d36f1c5d33844e47499b352477239bd3874147.zip
Remove unused preference page/initializer/etc.
Change-Id: Ib8df8345cc17db6888e9a82f434c36848408c7a5 Reviewed-on: https://git.eclipse.org/r/9438 Tested-by: Hudson CI Reviewed-by: Camilo Bernal <cabernal@redhat.com> IP-Clean: Camilo Bernal <cabernal@redhat.com> Tested-by: Camilo Bernal <cabernal@redhat.com>
Diffstat (limited to 'rpmstubby')
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/plugin.xml12
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceConstants.java18
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceInitializer.java29
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/StubbyPreferencePage.java48
4 files changed, 0 insertions, 107 deletions
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/plugin.xml b/rpmstubby/org.eclipse.linuxtools.rpmstubby/plugin.xml
index a7e194e3c7..44fe5ef601 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/plugin.xml
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/plugin.xml
@@ -10,18 +10,6 @@
-->
<plugin>
-
- <extension point="org.eclipse.ui.preferencePages">
- <page category="org.eclipse.linuxtools.rpm.ui.editor.mainpage"
- class="org.eclipse.linuxtools.internal.rpmstubby.preferences.StubbyPreferencePage"
- id="org.eclipse.linuxtools.rpmstubby.preferences.stubbyPreferencePage"
- name="%menu.label" />
- </extension>
- <extension point="org.eclipse.core.runtime.preferences">
- <initializer
- class="org.eclipse.linuxtools.internal.rpmstubby.preferences.PreferenceInitializer">
- </initializer>
- </extension>
<extension
point="org.eclipse.ui.commands">
<category
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceConstants.java b/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceConstants.java
deleted file mode 100644
index 4d208cafa3..0000000000
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceConstants.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Alphonse Van Assche.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Alphonse Van Assche - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.linuxtools.internal.rpmstubby.preferences;
-
-/**
- * Constant definitions for stubby plug-in preferences.
- */
-public class PreferenceConstants {
-}
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceInitializer.java b/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceInitializer.java
deleted file mode 100644
index d2ebe557bb..0000000000
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/PreferenceInitializer.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Alphonse Van Assche.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Alphonse Van Assche - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.linuxtools.internal.rpmstubby.preferences;
-
-import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
-
-
-/**
- * Class used to initialize default preference values.
- */
-public class PreferenceInitializer extends AbstractPreferenceInitializer {
-
- /**
- * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
- */
- @Override
- public void initializeDefaultPreferences() {
- }
-
-}
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/StubbyPreferencePage.java b/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/StubbyPreferencePage.java
deleted file mode 100644
index da27404085..0000000000
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/internal/rpmstubby/preferences/StubbyPreferencePage.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Alphonse Van Assche.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Alphonse Van Assche - initial API and implementation
- *******************************************************************************/
-package org.eclipse.linuxtools.internal.rpmstubby.preferences;
-
-import org.eclipse.jface.preference.FieldEditorPreferencePage;
-import org.eclipse.linuxtools.internal.rpmstubby.StubbyPlugin;
-import org.eclipse.ui.IWorkbench;
-import org.eclipse.ui.IWorkbenchPreferencePage;
-
-/**
- * Preference page for controlling spec files stub creation.
- *
- */
-public class StubbyPreferencePage extends FieldEditorPreferencePage implements
- IWorkbenchPreferencePage {
-
- /**
- * default constructor
- */
- public StubbyPreferencePage() {
- super(GRID);
- setPreferenceStore(StubbyPlugin.getDefault().getPreferenceStore());
- }
-
- /**
- * @see
- * org.eclipse.jface.preference.FieldEditorPreferencePage#createFieldEditors
- */
- @Override
- public void createFieldEditors() {
- }
-
- /**
- * @see
- * org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
- */
- public void init(IWorkbench workbench) {
- }
-
-}

Back to the top