mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 04:45:20 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
13 lines
327 B
Java
13 lines
327 B
Java
// "Replace loop with 'Collection.removeIf()'" "true"
|
|
import java.util.*;
|
|
|
|
public class Main {
|
|
public void removeEmpty(List<String> list) throws Exception {
|
|
/*here's list*/
|
|
// iterate over list
|
|
// if it's empty
|
|
/* remove! */
|
|
/*empty?*/
|
|
list.removeIf(String::isEmpty);
|
|
}
|
|
} |