Class ArrayFillIncompatibleType

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

public class ArrayFillIncompatibleType extends BugChecker implements BugChecker.MethodInvocationTreeMatcher
Checks when Arrays.fill(Object[], Object) is called with object types that are guaranteed to result in an ArrayStoreException.
See Also: