Class UnnecessaryCheckNotNull

java.lang.Object
com.google.errorprone.bugpatterns.BugChecker
com.google.errorprone.bugpatterns.nullness.UnnecessaryCheckNotNull
All Implemented Interfaces:
BugChecker.MethodInvocationTreeMatcher, Suppressible, Serializable

public class UnnecessaryCheckNotNull extends BugChecker implements BugChecker.MethodInvocationTreeMatcher
Checks for unnecessarily performing null checks on expressions which can't be null.
Author:
awturner@google.com (Andy Turner), bhagwani@google.com (Sumit Bhagwani)
See Also: