(Integer first, Integer second)
| 366 | } |
| 367 | |
| 368 | public static boolean equalInt(Integer first, Integer second) { |
| 369 | return equalObject(first, second); |
| 370 | } |
| 371 | |
| 372 | public static boolean equalBoolean(Boolean first, Boolean second) { |
| 373 | return equalObject(first, second); |
no test coverage detected