1
0
Fork 0
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:
David McKnight 2007-01-04 20:19:18 +00:00
parent 87b0615a93
commit bfeb822919

View file

@ -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();