mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
16 lines
348 B
Java
16 lines
348 B
Java
// "Replace Stream API chain with loop" "true"
|
|
|
|
import java.util.*;
|
|
import java.util.stream.*;
|
|
|
|
public class Main {
|
|
public void test(List<List<String>> list) {
|
|
for (List<String> lst : list) {
|
|
if (lst != null) {
|
|
for (String s : lst) {
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |