Skip to content

Commit

Permalink
删除无效代码
Browse files Browse the repository at this point in the history
  • Loading branch information
linzhijun committed Mar 18, 2023
1 parent 934f5d5 commit a1dce82
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,17 +365,6 @@ public Operand visitJudge_fun(final Judge_funContext context) {
return Operand.Create(r != 0);
}

private int Compare(final double t1, final double t2) {

final double b = round(t1 - t2, 12);
if (b == 0) {
return 0;
} else if (b > 0) {
return 1;
}
return -1;
}

public Operand visitAndOr_fun(final AndOr_funContext context) {
// 程序 && and || or 与 excel的 AND(x,y) OR(x,y) 有区别
// 在excel内 AND(x,y) OR(x,y) 先报错,
Expand Down

0 comments on commit a1dce82

Please sign in to comment.