Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-11-18 12:08:39 +0000
committerAlexander Kurtakov2020-11-18 12:08:39 +0000
commit62bd6ba9c2006b31d19f7ac6ed57dd6359c4b7b3 (patch)
tree65c8898a6096dc42f8f4c26e1f3f4f8ab31e8d56
parent5b6474909194a96accf81dc255ae51cd4c018c34 (diff)
downloadeclipse.platform.swt-62bd6ba9c2006b31d19f7ac6ed57dd6359c4b7b3.tar.gz
eclipse.platform.swt-62bd6ba9c2006b31d19f7ac6ed57dd6359c4b7b3.tar.xz
eclipse.platform.swt-62bd6ba9c2006b31d19f7ac6ed57dd6359c4b7b3.zip
Remove unnecessary semicolon.
Change-Id: If9a282df5d22d557610e491bf679fd3704edf4fb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug562463_BusyIndicatorIssue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug562463_BusyIndicatorIssue.java b/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug562463_BusyIndicatorIssue.java
index 87ced5f18c..c7e9091b7a 100644
--- a/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug562463_BusyIndicatorIssue.java
+++ b/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug562463_BusyIndicatorIssue.java
@@ -36,7 +36,7 @@ public class Bug562463_BusyIndicatorIssue {
System.out.printf("A task %s has ended\n", description);
}
- };
+ }
public static void main (String [] args) {
Display display = new Display();

Back to the top