From 8f01700e86b38c45b0de7728497ccb9be8c4578f Mon Sep 17 00:00:00 2001 From: Cyrus Najmabadi Date: Tue, 21 May 2024 16:26:06 -0700 Subject: [PATCH] formatting --- .../Workspace/ProjectSystem/ProjectSystemProject.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Workspaces/Core/Portable/Workspace/ProjectSystem/ProjectSystemProject.cs b/src/Workspaces/Core/Portable/Workspace/ProjectSystem/ProjectSystemProject.cs index bffcc1de1673e..17d034fbf0951 100644 --- a/src/Workspaces/Core/Portable/Workspace/ProjectSystem/ProjectSystemProject.cs +++ b/src/Workspaces/Core/Portable/Workspace/ProjectSystem/ProjectSystemProject.cs @@ -669,25 +669,17 @@ await _projectSystemProjectFactory.ApplyBatchChangeToWorkspaceMaybeAsync(useAsyn }).ConfigureAwait(false); foreach (var (documentId, textContainer) in documentsToOpen) - { await _projectSystemProjectFactory.ApplyChangeToWorkspaceMaybeAsync(useAsync, w => w.OnDocumentOpened(documentId, textContainer)).ConfigureAwait(false); - } foreach (var (documentId, textContainer) in additionalDocumentsToOpen) - { await _projectSystemProjectFactory.ApplyChangeToWorkspaceMaybeAsync(useAsync, w => w.OnAdditionalDocumentOpened(documentId, textContainer)).ConfigureAwait(false); - } foreach (var (documentId, textContainer) in analyzerConfigDocumentsToOpen) - { await _projectSystemProjectFactory.ApplyChangeToWorkspaceMaybeAsync(useAsync, w => w.OnAnalyzerConfigDocumentOpened(documentId, textContainer)).ConfigureAwait(false); - } // Give the host the opportunity to check if those files are open if (documentFileNamesAdded.Count > 0) - { await _projectSystemProjectFactory.RaiseOnDocumentsAddedMaybeAsync(useAsync, documentFileNamesAdded.ToImmutable()).ConfigureAwait(false); - } // If we added or removed analyzers, then re-run all generators to bring them up to date. if (hasAnalyzerChanges)