diff --git a/RefactoringEssentials/CSharp/Diagnostics/Synced/RedundanciesInCode/RedundantIfElseBlockAnalyzer.cs b/RefactoringEssentials/CSharp/Diagnostics/Synced/RedundanciesInCode/RedundantIfElseBlockAnalyzer.cs index 927f4bec..2cf99ef7 100644 --- a/RefactoringEssentials/CSharp/Diagnostics/Synced/RedundanciesInCode/RedundantIfElseBlockAnalyzer.cs +++ b/RefactoringEssentials/CSharp/Diagnostics/Synced/RedundanciesInCode/RedundantIfElseBlockAnalyzer.cs @@ -16,7 +16,7 @@ public class RedundantIfElseBlockAnalyzer : DiagnosticAnalyzer GettextCatalog.GetString("Redundant 'else' keyword"), GettextCatalog.GetString("Redundant 'else' keyword"), DiagnosticAnalyzerCategories.RedundanciesInCode, - DiagnosticSeverity.Info, + DiagnosticSeverity.Hidden, isEnabledByDefault: true, helpLinkUri: HelpLink.CreateFor(CSharpDiagnosticIDs.RedundantIfElseBlockAnalyzerID), customTags: DiagnosticCustomTags.Unnecessary