mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +07:00
GitOrigin-RevId: a17933972fc5cb31e03e3b7a145f5d721e356d25
7 lines
169 B
Java
7 lines
169 B
Java
class MyTest {
|
|
static <T extends Iterable<?>> void print(T collection) {
|
|
for (var item : collection) {
|
|
System.out.println(item);
|
|
}
|
|
}
|
|
} |