Skip to content

Commit 2bd12ae

Browse files
remove tests
1 parent f6542d5 commit 2bd12ae

File tree

3 files changed

+2
-128
lines changed

3 files changed

+2
-128
lines changed

src/EditorFeatures/Core/IntelliSense/ModelComputation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense;
1818

19-
internal class ModelComputation<TModel> where TModel : class
19+
internal sealed class ModelComputation<TModel> where TModel : class
2020
{
2121
#region Fields that can be accessed from either thread
2222

src/EditorFeatures/Test2/IntelliSense/ModelTests.vb

Lines changed: 0 additions & 126 deletions
This file was deleted.

src/EditorFeatures/VisualBasic/EndConstructGeneration/EndConstructCommandHandler.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.EndConstructGeneration
141141
End Function)
142142

143143
Dim options = buffer.GetCodeCleanupOptions(_editorOptionsService, document.Project.GetFallbackAnalyzerOptions(), document.Project.Services, explicitFormat:=False, allowImportsInHiddenRegions:=document.AllowImportsInHiddenRegions())
144-
Dim cleanDocument = CodeCleaner.CleanupAsync(document, GetSpanToCleanup(statement), Options, codeCleanups, cancellationToken:=cancellationToken).WaitAndGetResult(cancellationToken)
144+
Dim cleanDocument = CodeCleaner.CleanupAsync(document, GetSpanToCleanup(statement), options, codeCleanups, cancellationToken:=cancellationToken).WaitAndGetResult(cancellationToken)
145145
Dim changes = cleanDocument.GetTextChangesAsync(document, cancellationToken).WaitAndGetResult(cancellationToken)
146146

147147
Using transaction = New CaretPreservingEditTransaction(VBEditorResources.End_Construct, view, _undoHistoryRegistry, _editorOperationsFactoryService)

0 commit comments

Comments
 (0)