Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-05-22 07:41:58 +0000
committerLars Vogel2018-05-31 09:31:15 +0000
commitd431d21bc76722962755b8de45d8cfeb537d4b77 (patch)
tree2c4bcd5c6064c06a0131e7035a7b28f1a1067ffa
parentf63458dc2728505ca8ee7db67a8c2850d5fc73c4 (diff)
downloadeclipse.platform.ui-d431d21bc76722962755b8de45d8cfeb537d4b77.tar.gz
eclipse.platform.ui-d431d21bc76722962755b8de45d8cfeb537d4b77.tar.xz
eclipse.platform.ui-d431d21bc76722962755b8de45d8cfeb537d4b77.zip
Bug 534926 - Remove no-op check of createSplash in WorkbenchI20180531-2125I20180531-2000I20180531-1245I20180531-0910
Change-Id: I3ea87316f53330043bc258b906b8821b32f07a29 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
index 26d24ff5d76..8ef259e7cff 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
@@ -627,8 +627,7 @@ public final class Workbench extends EventManager implements IWorkbench,
.getApplication(), e4Workbench.getContext());
// prime the splash nice and early
- if (createSplash)
- workbench.createSplashWrapper();
+ workbench.createSplashWrapper();
AbstractSplashHandler handler = getSplash();

Back to the top