1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 23:15:24 +02:00

Moved the new static methods from AbstractCLaunchDelegate to the new utility class.

This commit is contained in:
Mikhail Khodjaiants 2006-05-18 15:35:46 +00:00
parent e55a3d34c0
commit 2a042c66a1

View file

@ -242,7 +242,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
*
* @return the program arguments as a String
*/
public static String getProgramArguments(ILaunchConfiguration config) throws CoreException {
public String getProgramArguments(ILaunchConfiguration config) throws CoreException {
return LaunchUtils.getProgramArguments(config);
}