Skip to content

Commit f46e631

Browse files
CyrusNajmabadisharwell
authored andcommitted
Remove blank lines between close braces that are on different lines.
1 parent fa4ffc8 commit f46e631

File tree

25 files changed

+0
-25
lines changed

25 files changed

+0
-25
lines changed

src/EditorFeatures/CSharpTest/ConvertToInterpolatedString/ConvertPlaceholderToInterpolatedStringTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,5 @@ void M()
793793
}
794794
}");
795795
}
796-
797796
}
798797
}

src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,6 @@ class C { }";
19851985
TestWorkspace.CreateCSharp("").GetService<IEditorOptionsFactoryService>().GlobalOptions
19861986
.SetOptionValue(DefaultOptions.TrimTrailingWhiteSpaceOptionName, false);
19871987
}
1988-
19891988
}
19901989

19911990
protected override char DocumentationCommentCharacter

src/EditorFeatures/Core/Shared/Options/ComponentOnOffOptions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@ public EditorComponentOnOffOptionsProvider()
4747
EditorComponentOnOffOptions.CodeRefactorings,
4848
EditorComponentOnOffOptions.ShowCodeRefactoringsWhenQueriedForCodeFixes);
4949
}
50-
5150
}

src/Features/Core/Portable/ExtractMethod/ExtractMethodService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ internal static class ExtractMethodService
1515
public static Task<ExtractMethodResult> ExtractMethodAsync(Document document, TextSpan textSpan, bool localFunction, OptionSet options = null, CancellationToken cancellationToken = default)
1616
=> document.GetLanguageService<IExtractMethodService>().ExtractMethodAsync(document, textSpan, localFunction, options, cancellationToken);
1717
}
18-
1918
}

src/Features/Core/Portable/MoveToNamespace/MoveToNamespaceAnalysisResult.ContainerType.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ public enum ContainerType
1111
Namespace,
1212
NamedType
1313
}
14-
1514
}
1615
}

src/Features/Core/Portable/PullMemberUp/AbstractPullMemberUpRefactoringProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,5 @@ private ImmutableArray<INamedTypeSymbol> FindAllValidDestinations(
8282

8383
return allDestinations.WhereAsArray(destination => MemberAndDestinationValidator.IsDestinationValid(solution, destination, cancellationToken));
8484
}
85-
8685
}
8786
}

src/Test/Perf/Utilities/TestUtilities.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,5 @@ public static void TestThisPlease(params PerfTest[] tests)
244244
}
245245
}
246246
}
247-
248247
}
249248
}

src/Test/Utilities/Portable/Platform/Desktop/DesktopRuntimeUtil.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ internal static Assembly LoadAsAssembly(string moduleName, ImmutableArray<byte>
9696
throw new Exception($"Exception loading {moduleName} reflectionOnly:{reflectionOnly}", ex);
9797
}
9898
}
99-
10099
}
101100
}
102101

src/Tools/BuildBoss/ProjectCheckerUtil.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ private bool CheckForProperty(TextWriter textWriter, string propertyName)
8888
textWriter.WriteLine($"\tDo not use {propertyName}");
8989
return false;
9090
}
91-
9291
}
9392

9493
return true;

src/Tools/BuildBoss/ProjectEntry.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,5 @@ internal static ProjectFileType GetProjectFileType(string path)
6060
return ProjectFileType.Unknown;
6161
}
6262
}
63-
6463
}
6564
}

0 commit comments

Comments
 (0)