mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
14 lines
256 B
Plaintext
14 lines
256 B
Plaintext
import java.util.*;
|
|
|
|
class AAA {
|
|
|
|
void usage() {
|
|
Set<String> s1 = new HashSet<>();
|
|
Set<String> s2 = new HashSet<>();
|
|
if (s1.isEmpty()) {
|
|
s1.add("foo");
|
|
s2.add("foo");
|
|
return;
|
|
}
|
|
}
|
|
} |