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 AWT
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 AWT')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
index 8248bd6a93..781daf7c05 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java
@@ -319,6 +319,7 @@ public static Shell new_Shell (final Display display, final Canvas parent) {
final Shell shell = Shell.gtk_new (display, handle);
final ComponentListener listener = new ComponentAdapter () {
+ @Override
public void componentResized (ComponentEvent e) {
display.syncExec (new Runnable () {
public void run () {

Back to the top