Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2008-10-07 13:14:06 +0000
committerDani Megert2008-10-07 13:14:06 +0000
commitc0f34b8c9fec6ba9be4988f0a11084fc0c771dfa (patch)
tree65ef3bb0da9808e982424662c5771b6465ba07c9 /org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse
parent51e7c15694082c23cd30920876393233d6b2b411 (diff)
downloadeclipse.platform.text-c0f34b8c9fec6ba9be4988f0a11084fc0c771dfa.tar.gz
eclipse.platform.text-c0f34b8c9fec6ba9be4988f0a11084fc0c771dfa.tar.xz
eclipse.platform.text-c0f34b8c9fec6ba9be4988f0a11084fc0c771dfa.zip
Fixed compile warning.
Diffstat (limited to 'org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse')
-rw-r--r--org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse/ui/examples/templateeditor/preferences/TemplatesPreferencePage.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse/ui/examples/templateeditor/preferences/TemplatesPreferencePage.java b/org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse/ui/examples/templateeditor/preferences/TemplatesPreferencePage.java
index 2f81df98f1b..6bb6260035b 100644
--- a/org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse/ui/examples/templateeditor/preferences/TemplatesPreferencePage.java
+++ b/org.eclipse.ui.examples.javaeditor/Template Editor Example/org/eclipse/ui/examples/templateeditor/preferences/TemplatesPreferencePage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
* 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
@@ -10,15 +10,15 @@
*******************************************************************************/
package org.eclipse.ui.examples.templateeditor.preferences;
-import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.examples.templateeditor.editors.TemplateEditorUI;
import org.eclipse.ui.texteditor.templates.TemplatePreferencePage;
+
/**
* @see org.eclipse.jface.preference.PreferencePage
*/
-public class TemplatesPreferencePage extends TemplatePreferencePage implements IWorkbenchPreferencePage {
+public class TemplatesPreferencePage extends TemplatePreferencePage {
public TemplatesPreferencePage() {
setPreferenceStore(TemplateEditorUI.getDefault().getPreferenceStore());

Back to the top