From 3810e2e5011de1bcc60e6c305a9fd70867f1e444 Mon Sep 17 00:00:00 2001 From: Cyrus Najmabadi Date: Wed, 5 Feb 2025 09:31:23 -0800 Subject: [PATCH] Remove unused methods --- .../EngineV2/DiagnosticIncrementalAnalyzer.ProjectState.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/LanguageServer/Protocol/Features/Diagnostics/EngineV2/DiagnosticIncrementalAnalyzer.ProjectState.cs b/src/LanguageServer/Protocol/Features/Diagnostics/EngineV2/DiagnosticIncrementalAnalyzer.ProjectState.cs index 26b1624548a8..84bd0eacdc28 100644 --- a/src/LanguageServer/Protocol/Features/Diagnostics/EngineV2/DiagnosticIncrementalAnalyzer.ProjectState.cs +++ b/src/LanguageServer/Protocol/Features/Diagnostics/EngineV2/DiagnosticIncrementalAnalyzer.ProjectState.cs @@ -42,12 +42,6 @@ public ProjectState(StateSet owner, ProjectId projectId) public ImmutableHashSet GetDocumentsWithDiagnostics() => _lastResult.DocumentIdsOrEmpty; - public bool IsEmpty() - => _lastResult.IsEmpty; - - public bool IsEmpty(DocumentId documentId) - => IsEmpty(_lastResult, documentId); - /// /// Return all diagnostics for the given project stored in this state ///