Return generic Item array in StructuredItem#emptyArray (#3955)

This commit is contained in:
RK_01 2024-06-17 20:08:34 +02:00 committed by GitHub
parent 3d083cf463
commit c098e24c4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,8 +46,8 @@ public class StructuredItem implements Item {
return new StructuredItem(0, 0); return new StructuredItem(0, 0);
} }
public static StructuredItem[] emptyArray(final int size) { public static Item[] emptyArray(final int size) {
final StructuredItem[] items = new StructuredItem[size]; final Item[] items = new Item[size];
for (int i = 0; i < items.length; i++) { for (int i = 0; i < items.length; i++) {
items[i] = empty(); items[i] = empty();
} }