mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
8 lines
233 B
Java
8 lines
233 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);
|
|
}
|
|
} |