mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
9 lines
186 B
Java
9 lines
186 B
Java
// "Remove the 'contains' check" "true"
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
void test(List<String> list, String key) {
|
|
/*contains!!!*/
|
|
list.remove(/*remove!!!*/key);
|
|
}
|
|
} |