mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
305 B
Plaintext
16 lines
305 B
Plaintext
import java.util.*;
|
|
|
|
class AAA {
|
|
|
|
void foo() {
|
|
Set<String> s1 = new HashSet<>();
|
|
Set<String> s2 = new HashSet<>();
|
|
if (s1.isEmpty()) {
|
|
s1.add("foo");
|
|
s2.add("foo");
|
|
} else {
|
|
s1.add("foo");
|
|
s2.add("foo");
|
|
}
|
|
}
|
|
} |