(Number x, Number y)
| 1018 | } |
| 1019 | |
| 1020 | public Number divide(Number x, Number y){ |
| 1021 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
| 1022 | return mc == null |
| 1023 | ? toBigDecimal(x).divide(toBigDecimal(y)) |
| 1024 | : toBigDecimal(x).divide(toBigDecimal(y), mc); |
| 1025 | } |
| 1026 | |
| 1027 | public Number quotient(Number x, Number y){ |
| 1028 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
nothing calls this directly
no test coverage detected