mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
253 B
Java
10 lines
253 B
Java
// "Replace with ThreadLocal.withInitial()" "true"
|
|
public class Main {
|
|
ThreadLocal<? extends CharSequence> tlr = new Th<caret>readLocal<String>() {
|
|
// comment
|
|
@Override
|
|
protected String initialValue() {
|
|
return "initial";
|
|
}
|
|
};
|
|
} |