Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2013-12-03 11:52:49 +0000
committerAlexander Kurtakov2013-12-03 11:52:49 +0000
commit49533f5c459dbf07a5def26b2f0889ab7234c8b9 (patch)
tree72e0a1cd4d9ad9fcaab53ae3a8f1fd735f0cf1b0 /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java
parent741bc6e1d6fba188a6d8fb1fa43ab365cc257527 (diff)
downloadeclipse.platform.swt-49533f5c459dbf07a5def26b2f0889ab7234c8b9.tar.gz
eclipse.platform.swt-49533f5c459dbf07a5def26b2f0889ab7234c8b9.tar.xz
eclipse.platform.swt-49533f5c459dbf07a5def26b2f0889ab7234c8b9.zip
Add missing @Override annotations.
Since moving to 1.5 this warning was left to enabled which caused 1000+ warnings. Add all annotations. Change-Id: I647cbd86fe93e8daed655def41f9d5fbcf16e609 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java
index eea3b39638..9a75cdb425 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashFormData.java
@@ -27,6 +27,7 @@ String getName () {
*
* @return a string representation of the event
*/
+@Override
public String toString () {
return getName()+" {weight="+weight+"}"; //$NON-NLS-2$
}

Back to the top