static A setThreadLocal(ThreadLocal tl, A value) { A old = tl.get(); tl.set(value); ret old; }