Skip to main content
summaryrefslogtreecommitdiffstats
path: root/launch
diff options
context:
space:
mode:
authorMikhail Khodjaiants2006-03-29 20:15:31 +0000
committerMikhail Khodjaiants2006-03-29 20:15:31 +0000
commit57917d77fdbf16ce1c30fead911d9680789e4c2e (patch)
treebc8109a124e190298515b06739bf9af0b101b21b /launch
parent91f17114ea35280db2d4499300269839217ef333 (diff)
downloadorg.eclipse.cdt-57917d77fdbf16ce1c30fead911d9680789e4c2e.tar.gz
org.eclipse.cdt-57917d77fdbf16ce1c30fead911d9680789e4c2e.tar.xz
org.eclipse.cdt-57917d77fdbf16ce1c30fead911d9680789e4c2e.zip
Made some generic methods static.
Diffstat (limited to 'launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
index be2447ef81c..84452738831 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java
@@ -833,7 +833,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
* does not include the default environment of the target.
* @deprecated
*/
- public static Properties getEnvironmentProperty(ILaunchConfiguration config) {
+ protected Properties getEnvironmentProperty(ILaunchConfiguration config) {
Properties prop = new Properties();
Map env = null;
try {

Back to the top