Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-03-06 14:47:58 +0000
committerLars Vogel2014-03-07 20:21:38 +0000
commit643851a60497273f54f40e1092c6eb1902810d99 (patch)
tree396424710aa30a1d8d8a202564b6c9bf97045124
parent39565e295e93832024b05b4eb7516a1441290986 (diff)
downloadeclipse.platform.ui-643851a60497273f54f40e1092c6eb1902810d99.tar.gz
eclipse.platform.ui-643851a60497273f54f40e1092c6eb1902810d99.tar.xz
eclipse.platform.ui-643851a60497273f54f40e1092c6eb1902810d99.zip
Bug 425962 - [New Contributors] Remove (non-Javadoc) @see statements if
@Override is used Change-Id: Id3932046007b63aba7f2cb91da99ea1c6a05369c Signed-off-by: Lars Vogel <bogus2.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java
index 16192e96054..b42f7e6b26e 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2013 IBM Corporation and others.
+ * Copyright (c) 2010, 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
@@ -435,11 +435,6 @@ public final class ContributionsAnalyzer {
return tag;
}
- /*
- * (non-Javadoc)
- *
- * @see java.lang.Object#equals(java.lang.Object)
- */
@Override
public boolean equals(Object obj) {
if (!(obj instanceof Key)) {

Back to the top