mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 082102197a4a06457685b5d6cd94e7296e51d8db
7 lines
144 B
Java
7 lines
144 B
Java
import java.util.List;
|
|
|
|
public class Foo {
|
|
void test(List<String> list) {
|
|
list.stream().anyMatch(s -> s.trim().var<caret>.isEmpty())
|
|
}
|
|
} |