Skip to content

Commit

Permalink
Stop mailing findings for ParameterComment (for now)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 471555280
  • Loading branch information
graememorgan authored and Error Prone Team committed Sep 1, 2022
1 parent c360cb0 commit 8ec5b8f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

import com.google.common.collect.ImmutableList;
import com.google.errorprone.BugPattern;
import com.google.errorprone.BugPattern.StandardTags;
import com.google.errorprone.VisitorState;
import com.google.errorprone.bugpatterns.BugChecker.MethodInvocationTreeMatcher;
import com.google.errorprone.bugpatterns.BugChecker.NewClassTreeMatcher;
Expand All @@ -44,8 +43,7 @@
/** A {@link BugChecker}; see the associated {@link BugPattern} annotation for details. */
@BugPattern(
summary = "Non-standard parameter comment; prefer `/* paramName= */ arg`",
severity = SUGGESTION,
tags = StandardTags.STYLE)
severity = SUGGESTION)
public class ParameterComment extends BugChecker
implements MethodInvocationTreeMatcher, NewClassTreeMatcher {

Expand Down

0 comments on commit 8ec5b8f

Please sign in to comment.