mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
9 lines
192 B
Java
9 lines
192 B
Java
// "Remove 'contains()' check" "true-preview"
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
void test(List<String> list, String key) {
|
|
/*contains!!!*/
|
|
list.remove(/*remove!!!*/key);
|
|
}
|
|
} |