(Number x, Number y)
| 1011 | } |
| 1012 | |
| 1013 | final public Number multiply(Number x, Number y){ |
| 1014 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
| 1015 | return mc == null |
| 1016 | ? toBigDecimal(x).multiply(toBigDecimal(y)) |
| 1017 | : toBigDecimal(x).multiply(toBigDecimal(y), mc); |
| 1018 | } |
| 1019 | |
| 1020 | public Number divide(Number x, Number y){ |
| 1021 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
nothing calls this directly
no test coverage detected