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.ui
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.ui')
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/IndexPart.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/IndexPart.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/IndexPart.java
index 2c1bc1a4c..20c1a3942 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/IndexPart.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/IndexPart.java
@@ -103,7 +103,7 @@ public class IndexPart extends HyperlinkTreePart implements IHelpUIConstants {
public String getSeeString(IIndexSee see) {
String seeText = see.isSeeAlso() ? Messages.SeeAlso : Messages.See;
String message = NLS.bind(seeText, see.getKeyword());
- String[] path = IndexUtils.getPath(see);;
+ String[] path = IndexUtils.getPath(see);
for (int i = 1; i < path.length; i++) {
message = NLS.bind(Messages.SeeList, message,path[i]);
}

Back to the top