mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
LanguageServers: Remove ClientConnection dependency
We now no longer need to provide a ClientConnection object to construct AutoCompleteEngine.
This commit is contained in:
parent
687efe6dd6
commit
c49cf23a86
12 changed files with 24 additions and 29 deletions
|
@ -14,8 +14,8 @@ namespace LanguageServers::Shell {
|
|||
|
||||
RefPtr<::Shell::Shell> AutoComplete::s_shell {};
|
||||
|
||||
AutoComplete::AutoComplete(ClientConnection& connection, const FileDB& filedb)
|
||||
: AutoCompleteEngine(connection, filedb, true)
|
||||
AutoComplete::AutoComplete(const FileDB& filedb)
|
||||
: AutoCompleteEngine(filedb, true)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue