mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
15 lines
431 B
Java
15 lines
431 B
Java
// "Replace with collect" "true"
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
public class Main {
|
|
public List<Runnable> test(List<String> list) {
|
|
List<Runnable> result = list.stream().<Runnable>map(s -> () -> {
|
|
String str = s;
|
|
if (str.isEmpty()) str = "none";
|
|
System.out.println(str);
|
|
}).collect(Collectors.toList());
|
|
return result;
|
|
}
|
|
} |