Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Roslyn to 4.4.0 1.22369.1 #2420

Merged
merged 14 commits into from
Jul 25, 2022
Merged
Prev Previous commit
Next Next commit
Update src/OmniSharp.Roslyn.CSharp/Services/Completion/CompletionList…
…Builder_Sync.cs

Co-authored-by: Fred Silberberg <[email protected]>
  • Loading branch information
filipw and 333fred authored Jul 20, 2022
commit 65b3fb028d76d6ad48b5f54c58aaeefea4b3ac32
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ internal static partial class CompletionListBuilder
completionTasksAndProviderNamesBuilder.Add(((Task<CompletionChange>?)completionService.GetChangeAsync(document, completion), providerName));
}
}
var completionTasksAndProviderNames = completionTasksAndProviderNamesBuilder.ToImmutable();
var completionTasksAndProviderNames = completionTasksAndProviderNamesBuilder.MoveToImmutable();

for (int i = 0; i < completions.ItemsList.Count; i++)
{
Expand Down