COMMON: Use Path functions in FSNode constructor

Path has an empty() function and equality operator. No need to convert
to a String first.
This commit is contained in:
djsrv 2021-08-06 22:59:23 -04:00 committed by Eugene Sandulenko
parent ed41e12fd2
commit d2b42b52d1

View File

@ -39,12 +39,11 @@ FSNode::FSNode(const Path &p) {
assert(g_system);
FilesystemFactory *factory = g_system->getFilesystemFactory();
AbstractFSNode *tmp = nullptr;
String s = p.toString();
if (s.empty() || s == ".")
if (p.empty() || p == Path("."))
tmp = factory->makeCurrentDirectoryFileNode();
else
tmp = factory->makeFileNodePath(s);
tmp = factory->makeFileNodePath(p.toString());
_realNode = SharedPtr<AbstractFSNode>(tmp);
}