mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
10 lines
179 B
Java
10 lines
179 B
Java
// "Replace with forEach" "true"
|
|
|
|
import java.util.Collection;
|
|
|
|
public class Test {
|
|
void test(Object obj) {
|
|
((Collection<String>) obj).forEach(System.out::println);
|
|
}
|
|
}
|