IDEA-161198 Migration from Stream API back to for loops

This commit is contained in:
Tagir Valeev
2016-11-01 15:31:34 +07:00
parent 994b0f84a9
commit 9caa6d5ede
181 changed files with 5276 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
// "Replace Stream API chain with loop" "true"
import java.util.List;
import java.util.function.Consumer;
import static java.util.Arrays.asList;
public class Main {
public static long test(List<String> list) {
long count = 0;
for (String l : list) {
if (l != null) {
(new Consumer<String>() {
String lst = "hello";
public void accept(String lst) {
System.out.println(this.lst + lst);
}
}).accept(l);
count++;
}
}
return count;
}
public static void main(String[] args) {
System.out.println(test(asList("a", "b", "c")));
}
}