Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-12 22:28:42 +0000
committerAlexander Kurtakov2019-02-12 22:33:53 +0000
commit3e28656e7147b4ae8579e15d906f6d797edaeb9c (patch)
treec0d60e3f111f861eb6e0e2d468aad1071d3be95e
parentfea68ecbfe38dc013edcc408c1765a48283c50e0 (diff)
downloadeclipse.platform.text-3e28656e7147b4ae8579e15d906f6d797edaeb9c.tar.gz
eclipse.platform.text-3e28656e7147b4ae8579e15d906f6d797edaeb9c.tar.xz
eclipse.platform.text-3e28656e7147b4ae8579e15d906f6d797edaeb9c.zip
Add missing Override annotation.I20190212-1800
Change-Id: I2a3d9fef5587d641d18761b9b8b78820427799dc Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractHoverInformationControlManager.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractHoverInformationControlManager.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractHoverInformationControlManager.java
index 965473eaf25..1166e264edc 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractHoverInformationControlManager.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractHoverInformationControlManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2018 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -985,9 +985,7 @@ abstract public class AbstractHoverInformationControlManager extends AbstractInf
super.install(subjectControl);
}
- /**
- * {@inheritDoc}
- */
+ @Override
public void install(Control subjectControl) {
install(subjectControl, subjectControl);
}

Back to the top