mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 04:20:56 +07:00
5 lines
173 B
Java
5 lines
173 B
Java
// "Replace with ThreadLocal.withInitial" "true"
|
|
public class Main {
|
|
// comment
|
|
ThreadLocal<? extends CharSequence> tlr = ThreadLocal.withInitial(() -> "initial");
|
|
} |