mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 12:34:00 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
9 lines
277 B
Java
9 lines
277 B
Java
// "Replace loop with 'Collection.removeIf()'" "true"
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
public void testIterator(List<List<String>> data, boolean b) {
|
|
data.removeIf(strings -> strings.isEmpty() && /* also check the flag */ b);
|
|
}
|
|
} |