Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristine Gerpheide2014-03-06 15:01:05 +0000
committerLars Vogel2014-03-10 10:00:18 +0000
commit82082fc6d391eecce1e19707437c81c1a12f0bf5 (patch)
treec4b19a4cf55a68b2974173b6f71514c7c04e9266
parent8ef646ef69d39eeec6992674d6ce6bf29351105a (diff)
downloadeclipse.platform.ui-82082fc6d391eecce1e19707437c81c1a12f0bf5.tar.gz
eclipse.platform.ui-82082fc6d391eecce1e19707437c81c1a12f0bf5.tar.xz
eclipse.platform.ui-82082fc6d391eecce1e19707437c81c1a12f0bf5.zip
Bug 425962 - [New Contributors] Remove (non-Javadoc) @see statements if
@Override is used @Override was not present, but added anyway since JRE 1.6 is specified. Change-Id: I4547285506e3d17c3a9ddac2b330439a71bda4d3 Signed-off-by: Christine Gerpheide <phoxicle@gmail.com>
-rw-r--r--bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/UIEventHandler.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/UIEventHandler.java b/bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/UIEventHandler.java
index 1c7b17758e2..926aa55a6ba 100644
--- a/bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/UIEventHandler.java
+++ b/bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/UIEventHandler.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2011 IBM Corporation and others.
+ * Copyright (c) 2009, 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
@@ -28,9 +28,7 @@ public class UIEventHandler implements EventHandler {
this.uiSync = uiSync;
}
- /* (non-Javadoc)
- * @see org.osgi.service.event.EventHandler#handleEvent(org.osgi.service.event.Event)
- */
+ @Override
public void handleEvent(final Event event) {
if (uiSync == null)
eventHandler.handleEvent(event);

Back to the top