Skip to content

Commit

Permalink
[incubator-kie-issues#1743] Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
athira committed Jan 20, 2025
1 parent bde2e16 commit 97ab953
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public boolean isWithUndefined() {
return withUndefined;
}

private Boolean finiteRangeIncludes(FEELDialect feelDialect, Object param) {
@Override
public Comparable getStart() {
if(lowEndPoint instanceof BigDecimal) {
Expand Down Expand Up @@ -129,7 +128,7 @@ public Comparable getEnd() {
return highEndPoint;
}

private Boolean finiteRangeIncludes(Object param) {
private Boolean finiteRangeIncludes(FEELDialect feelDialect, Object param) {
if (lowBoundary == RangeBoundary.OPEN && highBoundary == RangeBoundary.OPEN) {
return bothOrThrow(compare(feelDialect, lowEndPoint, param, (l, r) -> l.compareTo(r) < 0) , compare(feelDialect, highEndPoint, param, (l, r) -> l.compareTo(r) > 0), param);
} else if (lowBoundary == RangeBoundary.OPEN && highBoundary == RangeBoundary.CLOSED) {
Expand Down

0 comments on commit 97ab953

Please sign in to comment.