Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2003-06-10 19:36:34 +0000
committerJared Burns2003-06-10 19:36:34 +0000
commit1d1dc9944f2fd981fe3d92549e73798e4fbdeded (patch)
tree048befb3421027613afa4f72568fd5fee56cb3d1 /org.eclipse.ui.externaltools/Program Tools Support
parentecd4308394c3bf90e96b66673e6a5c5aa127c710 (diff)
downloadeclipse.platform.debug-1d1dc9944f2fd981fe3d92549e73798e4fbdeded.tar.gz
eclipse.platform.debug-1d1dc9944f2fd981fe3d92549e73798e4fbdeded.tar.xz
eclipse.platform.debug-1d1dc9944f2fd981fe3d92549e73798e4fbdeded.zip
Bug 37241 - Support for core variables (continued API cleanup)
Diffstat (limited to 'org.eclipse.ui.externaltools/Program Tools Support')
-rw-r--r--org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
index 27009acdc..5c792e8c5 100644
--- a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
+++ b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
@@ -28,7 +28,7 @@ import org.eclipse.debug.core.model.ILaunchConfigurationDelegate;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.core.variables.LaunchVariableUtil;
import org.eclipse.debug.ui.launchVariables.RefreshTab;
-import org.eclipse.debug.ui.launchVariables.VariableContextManager;
+import org.eclipse.debug.ui.launchVariables.LaunchVariableContextManager;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.ui.IWindowListener;
import org.eclipse.ui.IWorkbenchWindow;
@@ -137,7 +137,7 @@ public class ProgramLaunchDelegate implements ILaunchConfigurationDelegate {
return;
}
- String[] envp = LaunchVariableUtil.getEnvironment(configuration, VariableContextManager.getDefault().getVariableContext());
+ String[] envp = LaunchVariableUtil.getEnvironment(configuration, LaunchVariableContextManager.getDefault().getVariableContext());
if (monitor.isCanceled()) {
return;

Back to the top