static boolean eq(Object a, Object b) { ret a == null ? b == null : a == b || a.equals(b); }