(Object a, Object b)
| 13 | */ |
| 14 | public class Util { |
| 15 | static public boolean safeEq(Object a, Object b) { |
| 16 | if (a == null) return b == null; |
| 17 | if (b == null) return false; |
| 18 | return a.equals(b); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * exception munging list autoclosable |
no test coverage detected