Selaa lähdekoodia

CppLanguageServer: Only re-create DocumentData in file_opened if needed

Itamar 4 vuotta sitten
vanhempi
commit
9408013177

+ 1 - 1
Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp

@@ -328,7 +328,7 @@ void ParserAutoComplete::on_edit(const String& file)
 
 void ParserAutoComplete::file_opened([[maybe_unused]] const String& file)
 {
-    set_document_data(file, create_document_data_for(file));
+    get_or_create_document_data(file);
 }
 
 Optional<GUI::AutocompleteProvider::ProjectLocation> ParserAutoComplete::find_declaration_of(const String& filename, const GUI::TextPosition& identifier_position)