1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

getProgName static

This commit is contained in:
Alain Magloire 2002-11-23 04:19:32 +00:00
parent 679f9913d5
commit bd6214b376

View file

@ -157,7 +157,7 @@ abstract public class AbstractCLaunchDelegate implements ILaunchConfigurationDel
return configuration.getAttribute(ICDTLaunchConfigurationConstants.ATTR_PROJECT_NAME, (String) null);
}
public String getProgramName(ILaunchConfiguration configuration) throws CoreException {
public static String getProgramName(ILaunchConfiguration configuration) throws CoreException {
return configuration.getAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME, (String) null);
}