static ThreadLocal threadLocalWithDefault(A defaultValue) { ret new ThreadLocal { public A initialValue() { ret defaultValue; } }; }