(Object a, Object b)
| 349 | } |
| 350 | |
| 351 | public static Object add(Object a, Object b) { |
| 352 | Long la = a instanceof Long ? (Long) a : new Long(((Integer) a).longValue()); |
| 353 | Long lb = b instanceof Long ? (Long) b : new Long(((Integer) b).longValue()); |
| 354 | return la + lb; |
| 355 | } |
| 356 | |
| 357 | public static Object sub(Object a, Object b) { |
| 358 | Long la = a instanceof Long ? (Long) a : new Long(((Integer) a).longValue()); |
no outgoing calls
no test coverage detected