From 7043cd0e9d4e5c1318371439180b93c562084ebb Mon Sep 17 00:00:00 2001 From: Rick Ossendrijver Date: Thu, 12 Dec 2024 09:44:23 +0100 Subject: [PATCH] Typo --- .../errorprone/bugpatterns/ExplicitArgumentEnumeration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.