Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Feb 9, 2020
1 parent 3c3c8bc commit 77f032d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ public static BinaryComparisonOperator greaterThan(Expression leftOperand, Expre
return greaterThan(leftOperand, rightOperand, false);
}

public static BinaryComparisonOperator greaterThanOrEqual(Expression leftOperand, Expression rightOperand, boolean negate) {
public static BinaryComparisonOperator greaterThanOrEqualTo(Expression leftOperand, Expression rightOperand, boolean negate) {
return new BinaryComparisonOperator(leftOperand, !negate ? ComparisonName.GREATER_THAN_OR_EQUAL_TO : ComparisonName.LESS_THAN, rightOperand);
}

public static BinaryComparisonOperator greaterThanOrEqual(Expression leftOperand, Expression rightOperand) {
return greaterThanOrEqual(leftOperand, rightOperand, false);
public static BinaryComparisonOperator greaterThanOrEqualTo(Expression leftOperand, Expression rightOperand) {
return greaterThanOrEqualTo(leftOperand, rightOperand, false);
}

public static UnaryComparisonOperator isNull(Expression operand, boolean negate) {
Expand Down

0 comments on commit 77f032d

Please sign in to comment.