static void syncMoveElementLeft(L l, A a) { if (l == null) ret; synchronized(l) { int i = indexOf(l, a); if (i > 0) swapListElements(l, i, i-1); } }