IDEA-161198 Migration from Stream API back to for loops

This commit is contained in:
Tagir Valeev
2016-11-01 15:38:57 +07:00
parent 994b0f84a9
commit 9caa6d5ede
181 changed files with 5276 additions and 0 deletions
@@ -0,0 +1,14 @@
// "Replace Stream API chain with loop" "true"
import java.util.Arrays;
import java.util.List;
public class Main {
private static Integer test(List<Integer> numbers) {
return numbers.stream().red<caret>uce(0, Math::max);
}
public static void main(String[] args) {
test(Arrays.asList("a", "b", "xyz"));
}
}