Polishing

This commit is contained in:
Sam Brannen
2025-12-05 12:22:24 +01:00
parent d36475cb4c
commit f1cf91c9f9
@@ -170,7 +170,8 @@ final class SynthesizedMergedAnnotationInvocationHandler<A extends Annotation> i
Class<?> type = value.getClass();
if (type.isArray()) {
StringBuilder builder = new StringBuilder("{");
for (int i = 0; i < Array.getLength(value); i++) {
int arrayLength = Array.getLength(value);
for (int i = 0; i < arrayLength; i++) {
if (i > 0) {
builder.append(", ");
}