diff --git a/error-prone-contrib/src/main/java/tech/picnic/errorprone/bugpatterns/ExplicitArgumentEnumeration.java b/error-prone-contrib/src/main/java/tech/picnic/errorprone/bugpatterns/ExplicitArgumentEnumeration.java index 49dc17b1f9e..625f52bdf44 100644 --- a/error-prone-contrib/src/main/java/tech/picnic/errorprone/bugpatterns/ExplicitArgumentEnumeration.java +++ b/error-prone-contrib/src/main/java/tech/picnic/errorprone/bugpatterns/ExplicitArgumentEnumeration.java @@ -149,7 +149,7 @@ private static Optional trySuggestCallingVarargsOverload( * If all overloads have a single parameter, and at least one of them is a varargs method, then * we assume that unwrapping the iterable argument will cause a suitable overload to be invoked. * (Note that there may be multiple varargs overloads, either with different parameter types, or - * due to method overriding; this check is does not attempt to determine which exact method or + * due to method overriding; this check does not attempt to determine which exact method or * overload will be invoked as a result of the suggested simplification.) * * Note that this is a (highly!) imperfect heuristic, but it is sufficient to prevent e.g.