mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
11 lines
316 B
Java
11 lines
316 B
Java
// "Replace loop with 'Collection.removeIf()'" "true"
|
|
import java.util.*;
|
|
|
|
public class Main {
|
|
public void removeEmpty(List<String> list) throws Exception {
|
|
for<caret>(String item : list) {
|
|
// Presumably CopyOnWriteArrayList
|
|
if(item.isEmpty()) list.remove(item);
|
|
}
|
|
}
|
|
} |