Skip to content

Commit c7b4c42

Browse files
bkoelmanbkoelman
authored andcommitted
Removed some line breaks in code
1 parent 9e5dd4e commit c7b4c42

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/ClassDesign/AvoidStaticClassAnalyzer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ namespace CSharpGuidelinesAnalyzer.Rules.ClassDesign
1414
public sealed class AvoidStaticClassAnalyzer : DiagnosticAnalyzer
1515
{
1616
private const string Title = "Class should not be static";
17-
1817
private const string TypeMessageFormat = "Class '{0}' should be non-static or its name should be suffixed with 'Extensions'.";
1918
private const string MemberMessageFormat = "Extension method container class '{0}' contains {1} member '{2}', which is not an extension method.";
2019
private const string Description = "Avoid static classes.";

src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer/Rules/Framework/PreferLanguageSyntaxOverCallingImplementationAnalyzer.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ namespace CSharpGuidelinesAnalyzer.Rules.Framework
1414
public sealed class PreferLanguageSyntaxOverCallingImplementationAnalyzer : DiagnosticAnalyzer
1515
{
1616
private const string Title = "Prefer language syntax over explicit calls to underlying implementations";
17-
1817
private const string NullableHasValueMessageFormat = "Replace call to Nullable<T>.HasValue with null check.";
1918
private const string NullableComparisonMessageFormat = "Remove null check in numeric comparison.";
20-
2119
private const string Description = "Prefer language syntax over explicit calls to underlying implementations.";
2220

2321
public const string DiagnosticId = "AV2202";

0 commit comments

Comments
 (0)