mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 21:01:48 +07:00
e310b0c94c
GitOrigin-RevId: 9aaad61ae52463727c77930af532258ea16dd1da
8 lines
140 B
Java
8 lines
140 B
Java
// "Remove 'contains()' check" "true"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void test(Set<String> set, String key) {
|
|
set.add(key);
|
|
}
|
|
} |