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

returns "" if no name specifed in ext-point

This commit is contained in:
David Inglis 2002-08-15 18:27:29 +00:00
parent 4cfbba8bb8
commit 359ef3e7dd

View file

@ -31,7 +31,8 @@ public class DebugConfiguration implements ICDebugConfiguration {
}
public String getName() {
return getConfigurationElement().getAttribute("name"); //$NON-NLS-1$
String name = getConfigurationElement().getAttribute("name"); //$NON-NLS-1$
return name != null ? name : "";
}
public String getID() {