1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00
This commit is contained in:
Alain Magloire 2004-10-22 15:13:33 +00:00
parent 4c0d34ec50
commit 4d146140b3

View file

@ -92,7 +92,11 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
}
} catch (CoreException e) {
}
return DebugPlugin.getDefault().getLaunchManager().getEnvironment(config);
String[] array = DebugPlugin.getDefault().getLaunchManager().getEnvironment(config);
if (array == null) {
return new String[0];
}
return array;
}
/**