Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/issue-10275-alt3' into issue-102…
Browse files Browse the repository at this point in the history
…75-alt3
  • Loading branch information
slessard committed Sep 27, 2024
2 parents da9e514 + c8bcc1c commit fe83726
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 fe83726

Please sign in to comment.