From bf414cfbf70570eaba282ae0561324794269d2d1 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 3 Mar 2022 13:56:59 -0800 Subject: [lldb] Fix the build after 8b3b66ea63d6 Remove remaining calls to FileSystem::Collect. --- lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp') diff --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp index c677abf..5b9d1b7 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp @@ -217,7 +217,6 @@ bool ScriptInterpreterLua::LoadScriptingModule( lldb_private::Status &error, StructuredData::ObjectSP *module_sp, FileSpec extra_search_dir) { - FileSystem::Instance().Collect(filename); if (llvm::Error e = m_lua->LoadModule(filename)) { error.SetErrorStringWithFormatv("lua failed to import '{0}': {1}\n", filename, llvm::toString(std::move(e))); -- cgit v1.1