mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
274 B
Java
13 lines
274 B
Java
// "Create method 'getPreloadKeys'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
void test() {
|
|
Set<String> keys = new HashSet<String>();
|
|
keys.addAll(getPreloadKeys());
|
|
}
|
|
|
|
private Collection<String> getPreloadKeys() {
|
|
return null;
|
|
}
|
|
} |