We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ff24d commit cc591bcCopy full SHA for cc591bc
src/main/java/org/apache/commons/lang3/AnnotationUtils.java
@@ -332,7 +332,7 @@ public static String toString(final Annotation a) {
332
final ToStringBuilder builder = new ToStringBuilder(a, TO_STRING_STYLE);
333
for (final Method m : a.annotationType().getDeclaredMethods()) {
334
if (m.getParameterTypes().length > 0) {
335
- continue; // wtf?
+ continue; // what?
336
}
337
try {
338
builder.append(m.getName(), m.invoke(a));
0 commit comments