Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-11-04 14:53:44 +0000
committerLars Vogel2019-11-04 14:53:44 +0000
commit9103c7f88ec14bb6e7ab952144de89a2b9c2b4fa (patch)
tree20e51d33cbb651b4ea8bde2dad51d57be5197ae1
parent88d977e81763c6938cf81d36be15a25e8b91681e (diff)
downloadeclipse.platform.ua-9103c7f88ec14bb6e7ab952144de89a2b9c2b4fa.tar.gz
eclipse.platform.ua-9103c7f88ec14bb6e7ab952144de89a2b9c2b4fa.tar.xz
eclipse.platform.ua-9103c7f88ec14bb6e7ab952144de89a2b9c2b4fa.zip
Removes redundant semicolon from org.eclipse.help.baseI20191105-1800I20191105-0025I20191104-1800
Change-Id: I7a8fab18a7133e2cb68fccfea0bda2d3c396ebff Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
index 7a9d61731..c4d60fed7 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
@@ -88,7 +88,7 @@ public class HelpApplication implements IApplication, IExecutableExtension {
stopHelp();
// wait until start has finished
- synchronized(this) {};
+ synchronized(this) {}
}
/**

Back to the top