static int syncL(Collection l) { if (l == null) ret 0; synchronized(l) { ret l.size(); } } static L syncL() { ret syncList(); }