(Object a, Object b)
| 160 | } |
| 161 | |
| 162 | public static boolean isLessThanOrEqual(Object a, Object b) { |
| 163 | return Helpers.isLessThanOrEqual(a, b); |
| 164 | } |
| 165 | |
| 166 | public static Object mathMax(Object a, Object b) { |
| 167 | return Helpers.mathMax(a, b); |
nothing calls this directly
no test coverage detected