projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge /home/nik/work/jpsImport/JPS
[idea/community.git]
/
java
/
java-tests
/
testData
/
codeInsight
/
nullityinferrer
/
beforeForEachParameter.java
1
import java.util.*;
2
class Test {
3
void foo(List requests){
4
for (Object request : requests) {
5
System.out.println(request.toString());
6
}
7
}
8
}