From 33764a8046ab090921499ee5e4fd337940b51755 Mon Sep 17 00:00:00 2001 From: astroC86 <66444189+astroC86@users.noreply.github.com> Date: Mon, 21 Mar 2022 00:04:37 +0200 Subject: [PATCH] Remove outdated comment (#60275) --- .../CodeActions/InlineTemporary/InlineTemporaryTests.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/EditorFeatures/CSharpTest/CodeActions/InlineTemporary/InlineTemporaryTests.cs b/src/EditorFeatures/CSharpTest/CodeActions/InlineTemporary/InlineTemporaryTests.cs index eccc90cec61fc..0e3ec6dceaf48 100644 --- a/src/EditorFeatures/CSharpTest/CodeActions/InlineTemporary/InlineTemporaryTests.cs +++ b/src/EditorFeatures/CSharpTest/CodeActions/InlineTemporary/InlineTemporaryTests.cs @@ -5311,8 +5311,6 @@ public async Task Call_TopLevelStatement() [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsInlineTemporary)] public async Task TopLevelStatement() { - // Note: we should simplify 'global' as well - // https://github.com/dotnet/roslyn/issues/44420 var code = @" int val = 0; int [||]val2 = val + 1; @@ -5334,8 +5332,6 @@ public async Task TopLevelStatement() [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsInlineTemporary)] public async Task TopLevelStatement_InScope() { - // Note: we should simplify 'global' as well - // https://github.com/dotnet/roslyn/issues/44420 await TestAsync(@" { int val = 0;