From 52e7f87d5ea492375022256072fd5839b91f3358 Mon Sep 17 00:00:00 2001 From: David Inglis Date: Mon, 25 Oct 2004 17:42:14 +0000 Subject: [PATCH] deprecated environment launch constant --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 ++++ .../cdt/debug/core/ICDTLaunchConfigurationConstants.java | 3 +++ 2 files changed, 7 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 137c3b448b3..81fb0818ab9 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2004-10-25 David Inglis + Deprecated environment launch constent in favor of the constant provided by the debug.core. + * src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java + 2004-10-25 Alain Magloire Remove of the class ICDIExpressionManager. instead new clas ICDIExpressionManagegment that is on the ICDITarget diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java index 886d1061f08..c0932d26813 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDTLaunchConfigurationConstants.java @@ -50,12 +50,15 @@ public interface ICDTLaunchConfigurationConstants { * Launch configuration attribute key. The value is a boolean specifying * whether the current enviroment should be inherited when the application * is launched. + * @deprecated - see ILaunchManager.ATTR_APPEND_ENVIRONMENT_VARIABLES */ public static final String ATTR_PROGRAM_ENVIROMENT_INHERIT = CDT_LAUNCH_ID + ".ENVIRONMENT_INHERIT"; //$NON-NLS-1$ /** * Launch configuration attribute key. The value is a Map specifying the * environment to use when launching a C/C++ application. + * + * @deprecated - see ILaunchManager.ATTR_ENVIRONMENT_VARIABLES */ public static final String ATTR_PROGRAM_ENVIROMENT_MAP = CDT_LAUNCH_ID + ".ENVIRONMENT_MAP"; //$NON-NLS-1$