Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-06-17 09:35:49 +0000
committerLars Vogel2019-06-18 13:22:14 +0000
commit59855f91b09ce751c87f3baebcad01936e2c1377 (patch)
treec77df0817a548d985f8c5d372f9d4ac730a00984 /org.eclipse.ui.intro/src
parent12f5f97ce82861982000009e75cf4a0c7af8ee8a (diff)
downloadeclipse.platform.ua-59855f91b09ce751c87f3baebcad01936e2c1377.tar.gz
eclipse.platform.ua-59855f91b09ce751c87f3baebcad01936e2c1377.tar.xz
eclipse.platform.ua-59855f91b09ce751c87f3baebcad01936e2c1377.zip
Remove redundant block
Change-Id: Ib0fca9ed315ff118e330199a5f0c8c1037673b3c Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'org.eclipse.ui.intro/src')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
index 4b64762ad..c558e68af 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/url/IntroURL.java
@@ -422,10 +422,8 @@ public class IntroURL implements IIntroURL {
Browser browser = impl.getBrowser();
return browser.setUrl(url);
}
- {
- // SWT presentation.
- return openBrowser(url, pluginId);
- }
+ // SWT presentation.
+ return openBrowser(url, pluginId);
}

Back to the top