mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
Review ID: IDEA-CR-60451 GitOrigin-RevId: ea77644cd21b8d34ba4060f7c12106f290c50764
8 lines
123 B
Java
8 lines
123 B
Java
import java.util.List;
|
|
|
|
class Foo {
|
|
|
|
static void foo(List<String> ls) {
|
|
ls.forEach(System.out::println<caret>);
|
|
}
|
|
} |