Skip to content

Commit

Permalink
Update arrow/src/main/java/org/apache/iceberg/arrow/vectorized/Vector…
Browse files Browse the repository at this point in the history
…Holder.java
  • Loading branch information
nastra authored Sep 27, 2024
1 parent e574623 commit c8bcc1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static VectorHolder dummyHolder(int numRows) {
}

public boolean isDummy() {
return (vector == null) || vector instanceof NullVector;
return vector == null || vector instanceof NullVector;
}

/**
Expand Down

0 comments on commit c8bcc1c

Please sign in to comment.