Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-07-05 12:09:35 +0000
committerPaul Pazderski2019-07-05 15:30:50 +0000
commitc22842de830236a075c1df69c63db21ad4cbc7dc (patch)
treed7d2fe2ea8ad1ed554aa69b7de4a8c4fa9a9e1a8 /org.eclipse.core.externaltools
parentf78e7e1356098a74bd1019d95fc6808dcb6ebdc7 (diff)
downloadeclipse.platform.debug-c22842de830236a075c1df69c63db21ad4cbc7dc.tar.gz
eclipse.platform.debug-c22842de830236a075c1df69c63db21ad4cbc7dc.tar.xz
eclipse.platform.debug-c22842de830236a075c1df69c63db21ad4cbc7dc.zip
Bug 32205 - Move "merge output" launch attribute constant from ui toY20190708-0900I20190708-1035I20190708-0800I20190707-1800I20190707-0110I20190706-1800
core Change-Id: I8c3c6be953954443f4be3adb053b404140d83816 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'org.eclipse.core.externaltools')
-rw-r--r--org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java b/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java
index 5133bd9b4..8747d162e 100644
--- a/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java
+++ b/org.eclipse.core.externaltools/src/org/eclipse/core/externaltools/internal/launchConfigurations/ProgramLaunchDelegate.java
@@ -50,17 +50,6 @@ public class ProgramLaunchDelegate extends LaunchConfigurationDelegate {
private static final String ATTR_LAUNCH_IN_BACKGROUND = "org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND"; //$NON-NLS-1$
/**
- * Launch configuration attribute - a boolean value indicating whether a
- * configuration should be launched with merged error and standard output.
- * Default value is <code>false</code>.
- * <p>
- * This constant is defined in org.eclipse.debug.ui, but has to be copied
- * here to support headless launching.
- * </p>
- */
- private static final String ATTR_MERGE_OUTPUT = "org.eclipse.debug.ui.ATTR_MERGE_OUTPUT"; //$NON-NLS-1$
-
- /**
* @see org.eclipse.debug.core.model.ILaunchConfigurationDelegate#launch(org.eclipse.debug.core.ILaunchConfiguration,
* java.lang.String, org.eclipse.debug.core.ILaunch,
* org.eclipse.core.runtime.IProgressMonitor)
@@ -110,7 +99,7 @@ public class ProgramLaunchDelegate extends LaunchConfigurationDelegate {
return;
}
- boolean mergeOutput = configuration.getAttribute(ATTR_MERGE_OUTPUT, false);
+ boolean mergeOutput = configuration.getAttribute(DebugPlugin.ATTR_MERGE_OUTPUT, false);
Process p = DebugPlugin.exec(cmdLine, workingDir, envp, mergeOutput);
IProcess process = null;

Back to the top