Skip to content

Commit

Permalink
Fixed simple mistake of flipping > operator
Browse files Browse the repository at this point in the history
Signed-off-by: Skyring100 <[email protected]>
  • Loading branch information
Skyring100 committed Jun 18, 2024
1 parent cd4c802 commit add784a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ public static Query unsignedLongRangeQuery(
u = u.subtract(BigInteger.ONE);
}
}
if(l.compareTo(u) < 0){
if(l.compareTo(u) > 0){
return new MatchNoDocsQuery();
}
return builder.apply(l, u);
Expand Down

0 comments on commit add784a

Please sign in to comment.