(Number x, Number y)
| 1004 | } |
| 1005 | |
| 1006 | final public Number add(Number x, Number y){ |
| 1007 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
| 1008 | return mc == null |
| 1009 | ? toBigDecimal(x).add(toBigDecimal(y)) |
| 1010 | : toBigDecimal(x).add(toBigDecimal(y), mc); |
| 1011 | } |
| 1012 | |
| 1013 | final public Number multiply(Number x, Number y){ |
| 1014 | MathContext mc = (MathContext) MATH_CONTEXT.deref(); |
nothing calls this directly
no test coverage detected