Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortbaumann2dj2014-03-28 17:53:43 +0000
committerLars Vogel2014-03-28 18:15:00 +0000
commitd5c2aace465bfae8f79781a7b40ac0b22dcb94ae (patch)
treefb96c69a41dd7226131e2b7235f49ba7e74e28e1
parent2e063860b3a960f0fab69afd62af9054ee06fa8a (diff)
downloadeclipse.platform.ui-d5c2aace465bfae8f79781a7b40ac0b22dcb94ae.tar.gz
eclipse.platform.ui-d5c2aace465bfae8f79781a7b40ac0b22dcb94ae.tar.xz
eclipse.platform.ui-d5c2aace465bfae8f79781a7b40ac0b22dcb94ae.zip
Bug 425962 - [New Contributors] Remove (non-Javadoc) @see statements if
@Override is used Remove "(non-javadoc)" comment. Change-Id: Ic27951be5bc19c55244f435723725f880ce2f70a Signed-off-by: tbaumann2dj <tobbaumann@gmail.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java
index ebd1ba407c2..fda58cf8042 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * Copyright (c) 2006, 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
@@ -176,23 +176,12 @@ public final class BasicWorkingSetElementAdapter implements
return null;
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ui.IWorkingSetElementAdapter#dispose()
- */
@Override
public void dispose() {
if (packageTracker != null)
packageTracker.close();
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.core.runtime.IExecutableExtension#setInitializationData(org.eclipse.core.runtime.IConfigurationElement,
- * java.lang.String, java.lang.Object)
- */
@Override
public void setInitializationData(IConfigurationElement config,
String propertyName, Object data) {

Back to the top