Skip to content

Commit c0ae821

Browse files
authored
Format LargeListVector.java
1 parent e798ff6 commit c0ae821

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vector/src/main/java/org/apache/arrow/vector/complex/LargeListVector.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,8 @@ public List<?> getObject(int index) {
865865
final long start = offsetBuffer.getLong((long) index * OFFSET_WIDTH);
866866
final long end = offsetBuffer.getLong(((long) index + 1L) * OFFSET_WIDTH);
867867
final ValueVector vv = getDataVector();
868-
final List<Object> vals = new JsonStringArrayList<>(LargeMemoryUtil.checkedCastToInt(end - start));
868+
final List<Object> vals =
869+
new JsonStringArrayList<>(LargeMemoryUtil.checkedCastToInt(end - start));
869870
for (long i = start; i < end; i++) {
870871
vals.add(vv.getObject(checkedCastToInt(i)));
871872
}

0 commit comments

Comments
 (0)