Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemy Suen2011-05-26 18:31:57 +0000
committerRemy Suen2011-05-26 18:31:57 +0000
commit3319af014a87b04bd304a41fd19fb178a83114db (patch)
treec269ffd04605d56adc0a50d27ad9e9d1f87244f0 /bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
parente4013e4dc6a5a1a454c0d16c105cca4c16d4d7da (diff)
downloadeclipse.platform.ui-3319af014a87b04bd304a41fd19fb178a83114db.tar.gz
eclipse.platform.ui-3319af014a87b04bd304a41fd19fb178a83114db.tar.xz
eclipse.platform.ui-3319af014a87b04bd304a41fd19fb178a83114db.zip
Bug 345736 [Compatibility] Opening an HTML page goes external
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
index 1de70d7828b..7015e879870 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
@@ -2659,8 +2659,7 @@ public class WorkbenchPage extends CompatibleWorkbenchPage implements
}
// Special handling for external editors (they have no tabs...)
- if ("org.eclipse.ui.systemExternalEditor".equals(editorId) //$NON-NLS-1$
- || "org.eclipse.ui.browser.editorSupport".equals(editorId)) { //$NON-NLS-1$
+ if ("org.eclipse.ui.systemExternalEditor".equals(editorId)) { //$NON-NLS-1$
IPathEditorInput fileInput = getPathEditorInput(input);
if (fileInput == null) {
throw new PartInitException(WorkbenchMessages.EditorManager_systemEditorError);

Back to the top