Skip to content

Commit cc591bc

Browse files
committed
better comment
1 parent 70ff24d commit cc591bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/lang3/AnnotationUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public static String toString(final Annotation a) {
332332
final ToStringBuilder builder = new ToStringBuilder(a, TO_STRING_STYLE);
333333
for (final Method m : a.annotationType().getDeclaredMethods()) {
334334
if (m.getParameterTypes().length > 0) {
335-
continue; // wtf?
335+
continue; // what?
336336
}
337337
try {
338338
builder.append(m.getName(), m.invoke(a));

0 commit comments

Comments
 (0)