sbool syncContains(Collection c, O o) { if (c == null) false; synchronized(c) { ret c.contains(o); } }