projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix testdata
[idea/community.git]
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
quickFix
/
anonymous2lambdaAlternative
/
beforeThreadLocal.java
1
// "Replace with ThreadLocal.withInitial" "true"
2
public class Main {
3
ThreadLocal<? extends CharSequence> tlr = new Th<caret>readLocal<String>() {
4
// comment
5
@Override
6
protected String initialValue() {
7
return "initial";
8
}
9
};
10
}