Skip to content

Commit

Permalink
Update src/Workspaces/Remote/ServiceHub/Host/RemoteWorkspace.Solution…
Browse files Browse the repository at this point in the history
…Creator.cs
  • Loading branch information
CyrusNajmabadi authored Apr 12, 2024
1 parent 58206dd commit 6eb6457
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ await _assetProvider.GetAssetsAsync<CompilationOptions>(
// efficiently in bulk and in parallel.
await _assetProvider.SynchronizeProjectAssetsAsync(projectStateChecksumsToAdd, cancellationToken).ConfigureAwait(false);

using var _3 = ArrayBuilder<ProjectInfo>.GetInstance(out var projectInfos);
using var _3 = ArrayBuilder<ProjectInfo>.GetInstance(projectStateChecksumsToAdd.Count, out var projectInfos);
foreach (var (projectId, newProjectChecksums) in newProjectIdToStateChecksums)
{
if (!oldProjectIdToStateChecksums.ContainsKey(projectId))
Expand Down

0 comments on commit 6eb6457

Please sign in to comment.