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