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:
parent
4cfbba8bb8
commit
359ef3e7dd
1 changed files with 2 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue