LanguageClient: remove unused function

Change-Id: If931e1e6d2e28eddb599faefda2590324ff0801b
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2020-10-28 11:42:46 +01:00
parent 381c5656e7
commit 7e10d6d7b5
2 changed files with 0 additions and 11 deletions

View File

@@ -330,15 +330,6 @@ void Client::sendContent(const IContent &content)
m_clientInterface->sendMessage(message);
}
void Client::sendContent(const DocumentUri &uri, const IContent &content)
{
if (!Utils::anyOf(m_openedDocument.keys(), [uri](TextEditor::TextDocument *documnent) {
return uri.toFilePath() == documnent->filePath();
})) {
sendContent(content);
}
}
void Client::cancelRequest(const MessageId &id)
{
m_responseHandlers.remove(id);