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
/
beforeThread.java
1
// "Replace with constructor accepting lambda" "true"
2
public class Main {
3
public void testThread() {
4
new <caret>Thread() {
5
// Comment outside
6
@Override
7
public void run() {
8
// Comment inside
9
System.out.println("Hello from thread!");
10
}
11
// Ending comment
12
}.start();
13
}
14
}