mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
8 lines
142 B
Java
8 lines
142 B
Java
// "Remove the 'contains' check" "true"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void test(Set<String> set, String key) {
|
|
set.add(key);
|
|
}
|
|
} |