static void mapLike syncFilterLinkedListInPlace(O pred, L l) { if (l == null) ret; synchronized(l) { filterListInPlace(pred, l); } } static void syncFilterLinkedListInPlace(L l, IF1 pred) { syncFilterLinkedListInPlace(pred, l); }