Skip to content

Commit a64f073

Browse files
Merge pull request #38998 from jasonmalinowski/delete-dead-code
Delete some dead code from the rename test harness
2 parents bdcf132 + 3ba3feb commit a64f073

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/EditorFeatures/Test2/Rename/RenameEngineResult.vb

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ Namespace Microsoft.CodeAnalysis.Editor.UnitTests.Rename
2828
''' </summary>
2929
Private ReadOnly _unassertedRelatedLocations As HashSet(Of RelatedLocation)
3030

31-
''' <summary>
32-
''' The list of text replacements that haven't been asserted about yet. Items are removed
33-
''' from here when they are asserted, so the set should be empty once we're done.
34-
''' </summary>
35-
''' <remarks></remarks>
36-
Private ReadOnly _unassertedTextChanges As HashSet(Of Location)
37-
3831
Private ReadOnly _renameTo As String
3932

4033
Private _failedAssert As Boolean
@@ -101,15 +94,6 @@ Namespace Microsoft.CodeAnalysis.Editor.UnitTests.Rename
10194
Return engineResult
10295
End Function
10396

104-
Private Shared Sub AssertIsComplete(currentSolution As Solution)
105-
' Ensure we don't have a partial solution. This is to detect for possible root causes of
106-
' https://github.com/dotnet/roslyn/issues/9298
107-
108-
If currentSolution.Projects.Any(Function(p) Not p.HasSuccessfullyLoadedAsync().Result) Then
109-
AssertEx.Fail("We have an incomplete project floating around which we should not.")
110-
End If
111-
End Sub
112-
11397
Friend ReadOnly Property ConflictResolution As ConflictResolution
11498
Get
11599
Return _resolution

0 commit comments

Comments
 (0)