(Object o1, Object o2)
| 50 | } |
| 51 | |
| 52 | public int compare(Object o1, Object o2){ |
| 53 | Object o = invoke(o1, o2); |
| 54 | |
| 55 | if(o instanceof Boolean) |
| 56 | { |
| 57 | if(RT.booleanCast(o)) |
| 58 | return -1; |
| 59 | return RT.booleanCast(invoke(o2,o1))? 1 : 0; |
| 60 | } |
| 61 | |
| 62 | Number n = (Number) o; |
| 63 | return n.intValue(); |
| 64 | } |
| 65 | } |
nothing calls this directly
no test coverage detected