Class CanIgnoreReturnValueSuggester

java.lang.Object
com.google.errorprone.bugpatterns.BugChecker
com.google.errorprone.bugpatterns.checkreturnvalue.CanIgnoreReturnValueSuggester
All Implemented Interfaces:
BugChecker.MethodTreeMatcher, Suppressible, Serializable

public final class CanIgnoreReturnValueSuggester extends BugChecker implements BugChecker.MethodTreeMatcher
Checker that recommends annotating a method with @CanIgnoreReturnValue if the method returns this, returns an effectively final input param, or if it looks like a builder method (that is likely to return this).
See Also: