mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-27 00:47:00 +07:00
2d1a6a067b
GitOrigin-RevId: 758c1e9c3be3c016093d84bf0617ef0b030161b1
13 lines
266 B
Java
13 lines
266 B
Java
// "Create method 'getPreloadKeys'" "true"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
void test() {
|
|
Set<String> keys = new HashSet<String>();
|
|
keys.addAll(getPreloadKeys());
|
|
}
|
|
|
|
private Collection<String> getPreloadKeys() {
|
|
return null;
|
|
}
|
|
} |