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.help.webapp
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.help.webapp')
-rw-r--r--org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/data/UrlUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/data/UrlUtil.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/data/UrlUtil.java
index b24570c43..00db762ef 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/data/UrlUtil.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/data/UrlUtil.java
@@ -180,7 +180,7 @@ public class UrlUtil {
prefix = ""; //$NON-NLS-1$
for (int d = 0; d < depth; d++) {
prefix += "../"; //$NON-NLS-1$
- };
+ }
prefix += "topic"; //$NON-NLS-1$
return prefix;
}

Back to the top