mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
11 lines
193 B
Java
11 lines
193 B
Java
import java.util.*;
|
|
|
|
class Foo {
|
|
void test(List<String> list, boolean b) {
|
|
if (b) {
|
|
list = new ArrayList<>();
|
|
}
|
|
System.out.println(list.trimTo);
|
|
}
|
|
}
|