mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 23:25:26 +02:00
deleted elements should return "" for name
This commit is contained in:
parent
87b0615a93
commit
bfeb822919
1 changed files with 2 additions and 2 deletions
|
@ -238,12 +238,12 @@ public class DStoreHostFile implements IHostFile
|
|||
if (name == null)
|
||||
{
|
||||
// this element is deleted
|
||||
return "";
|
||||
return ""; //$NON-NLS-1$
|
||||
}
|
||||
if (name.length() == 0)
|
||||
{
|
||||
return _element.getValue();
|
||||
}
|
||||
}
|
||||
String parentPath = getParentPath();
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue