This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit cc591bc0a2ce923654c069a0a23b4439a18ca6f7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jan 6 10:22:43 2025 -0500 better comment --- src/main/java/org/apache/commons/lang3/AnnotationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/AnnotationUtils.java b/src/main/java/org/apache/commons/lang3/AnnotationUtils.java index a489cc3e5..0f6152fa2 100644 --- a/src/main/java/org/apache/commons/lang3/AnnotationUtils.java +++ b/src/main/java/org/apache/commons/lang3/AnnotationUtils.java @@ -332,7 +332,7 @@ public class AnnotationUtils { final ToStringBuilder builder = new ToStringBuilder(a, TO_STRING_STYLE); for (final Method m : a.annotationType().getDeclaredMethods()) { if (m.getParameterTypes().length > 0) { - continue; // wtf? + continue; // what? } try { builder.append(m.getName(), m.invoke(a));