diff --git a/lldb/source/Host/common/FileSystem.cpp b/lldb/source/Host/common/FileSystem.cpp index 2367a641e935..358274e9d2fb 100644 --- a/lldb/source/Host/common/FileSystem.cpp +++ b/lldb/source/Host/common/FileSystem.cpp @@ -171,8 +171,7 @@ bool FileSystem::IsDirectory(const FileSpec &file_spec) const { bool FileSystem::IsLocal(const Twine &path) const { bool b = false; - if (m_fs) - m_fs->isLocal(path, b); + m_fs->isLocal(path, b); return b; }