(Number x, Number y)
| 1043 | } |
| 1044 | |
| 1045 | public boolean lt(Number x, Number y){ |
| 1046 | return toBigDecimal(x).compareTo(toBigDecimal(y)) < 0; |
| 1047 | } |
| 1048 | |
| 1049 | public boolean lte(Number x, Number y){ |
| 1050 | return toBigDecimal(x).compareTo(toBigDecimal(y)) <= 0; |
nothing calls this directly
no test coverage detected