Browse Source

Added Resharper disable keyword

pull/32/merge
ciplogic 13 years ago
parent
commit
619cffddae
  1. 3
      ICSharpCode.NRefactory.CSharp/Refactoring/CodeIssues/RedundantBaseConstructorIssue.cs

3
ICSharpCode.NRefactory.CSharp/Refactoring/CodeIssues/RedundantBaseConstructorIssue.cs

@ -32,7 +32,8 @@ namespace ICSharpCode.NRefactory.CSharp.Refactoring @@ -32,7 +32,8 @@ namespace ICSharpCode.NRefactory.CSharp.Refactoring
Description = "Remove base constructor call that is redundant",
Category = IssueCategories.Redundancies,
Severity = Severity.Suggestion,
IssueMarker = IssueMarker.GrayOut)]
IssueMarker = IssueMarker.GrayOut,
ResharperDisableKeyword = "RedundantBaseConstructorCall")]
public class RedundantBaseConstructorIssue : ICodeIssueProvider
{
public IEnumerable<CodeIssue> GetIssues (BaseRefactoringContext context)

Loading…
Cancel
Save