mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
8 lines
229 B
Java
8 lines
229 B
Java
// "Replace l.removeAll(objs) with java.util.Collections.addAll(l, objs)" "false"
|
|
class T {
|
|
public static void main(String[] args){
|
|
List l = new List();
|
|
Object[] objs = new Object[0];
|
|
l.removeAll(<caret>objs);
|
|
}
|
|
} |