Files
2026-01-16 13:57:13 +00:00

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);
}
}