Skip to content

Commit e1dd4cb

Browse files
committed
format
1 parent ebdf7ba commit e1dd4cb

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/RunEndEncodedVector.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,8 @@ public static class RangeIterator {
836836
* @param runEndEncodedVector The vector to iterate over
837837
* @param startIndex The logical start index of the range (inclusive)
838838
* @param length The number of values to include in the range
839-
* @throws IllegalArgumentException if startIndex is negative or (startIndex + length) exceeds vector bounds
839+
* @throws IllegalArgumentException if startIndex is negative or (startIndex + length) exceeds
840+
* vector bounds
840841
*/
841842
public RangeIterator(RunEndEncodedVector runEndEncodedVector, int startIndex, int length) {
842843
int rangeEnd = startIndex + length;

0 commit comments

Comments
 (0)