diff options
| author | Erik Chou | 2014-02-08 00:37:27 +0000 |
|---|---|---|
| committer | Gerrit Code Review @ Eclipse.org | 2014-02-08 21:48:54 +0000 |
| commit | ad53831bbd4a7854561d9b03a2c8e10cb1f6659f (patch) | |
| tree | e85b60a9e5ed86669ec2aaf895046127dd54d481 | |
| parent | 07898e0f65269ef5fd8d1eb45cd3ebca12c5b443 (diff) | |
| download | eclipse.platform.ui-ad53831bbd4a7854561d9b03a2c8e10cb1f6659f.tar.gz eclipse.platform.ui-ad53831bbd4a7854561d9b03a2c8e10cb1f6659f.tar.xz eclipse.platform.ui-ad53831bbd4a7854561d9b03a2c8e10cb1f6659f.zip | |
Bug 425962 - Remove (non-Javadoc) @see statements if @Override is used I20140209-1458
Remove (non-Javadoc) @see statements from methods with @Override in
ViewsPreferencePage.java
Change-Id: I8535605a8de16f43822c635223993212cd6a16f8
Signed-off-by: Erik Chou <ekchou@ymail.com>
| -rw-r--r-- | bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java index 904511d2cbc..4cead7f7d15 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2012 IBM Corporation and others. + * Copyright (c) 2000, 2014 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 @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * Erik Chou <ekchou@ymail.com> - Bug 425962 *******************************************************************************/ package org.eclipse.ui.internal.dialogs; @@ -151,11 +152,6 @@ public class ViewsPreferencePage extends PreferencePage implements engine = context.get(IThemeEngine.class); } - /* - * (non-Javadoc) - * - * @see org.eclipse.jface.preference.PreferencePage#performOk() - */ @Override public boolean performOk() { if (getSelection() != null) { @@ -201,11 +197,6 @@ public class ViewsPreferencePage extends PreferencePage implements super.performDefaults(); } - /* - * (non-Javadoc) - * - * @see org.eclipse.jface.preference.PreferencePage#performCancel() - */ @Override public boolean performCancel() { if (currentTheme != null) { |
