mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
12 lines
161 B
Java
12 lines
161 B
Java
import java.util.List;
|
|
|
|
class Example {
|
|
public void example(List<Foo> foos) {
|
|
foos.forEach(foo -> foo.bar = null);
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
public Long bar;
|
|
}
|