Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-01-08 10:59:28 +0000
committerLars Vogel2020-01-08 10:59:28 +0000
commit1c5a16f4134649638261fd34819cc135621ef641 (patch)
treea1725bfb89e8ed4b4b57b493708084450766ed1e /org.eclipse.ua.tests/help/org/eclipse/ua
parente7247c25b9c7c10ede03ce20fbaa387c789c2aa3 (diff)
downloadeclipse.platform.ua-1c5a16f4134649638261fd34819cc135621ef641.tar.gz
eclipse.platform.ua-1c5a16f4134649638261fd34819cc135621ef641.tar.xz
eclipse.platform.ua-1c5a16f4134649638261fd34819cc135621ef641.zip
Avoid unnecessary semicolons
Done via batch cleanup with Source -> Clean-up -> Remove redundant semicolons Change-Id: I84fdb2b42b2ce16a16ff5216ecb4fa89ea007046 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'org.eclipse.ua.tests/help/org/eclipse/ua')
-rw-r--r--org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/search/WorkingSetManagerTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/search/WorkingSetManagerTest.java b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/search/WorkingSetManagerTest.java
index 61a726c86..c675f3469 100644
--- a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/search/WorkingSetManagerTest.java
+++ b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/search/WorkingSetManagerTest.java
@@ -200,7 +200,7 @@ public class WorkingSetManagerTest {
createWsetWithAllTocs(mgr, "test1a");
WorkingSetScope scope = new WorkingSetScope("test1a", mgr, "scope");
Toc[] tocs = HelpPlugin.getTocManager().getTocs(Platform.getNL());
- for (Toc toc : tocs) {;
+ for (Toc toc : tocs) {
ITopic[] topics = toc.getTopics();
for (ITopic topic : topics) {
assertTrue(scope.inScope(topic));
@@ -214,7 +214,7 @@ public class WorkingSetManagerTest {
createWsetWithAllTocs(mgr, "test1b");
WorkingSetScope scope = new WorkingSetScope("test1b", mgr, "scope");
Toc[] tocs = HelpPlugin.getTocManager().getTocs(Platform.getNL());
- for (Toc toc : tocs) {;
+ for (Toc toc : tocs) {
ITopic[] topics = toc.getTopics();
for (ITopic topic : topics) {
ITopic[] subtopics = topic.getSubtopics();

Back to the top