mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
17 lines
377 B
Java
17 lines
377 B
Java
import java.util.*;
|
|
|
|
class Specificss {
|
|
{
|
|
Set<String> JAR_EXTENSIONS = newTroveSet(new ArrayList<String>(), "jar", "zip", "swc", "ane");
|
|
}
|
|
|
|
|
|
public static <T> HashSet<T> newTroveSet(T... elements) {
|
|
return newTroveSet(Arrays.asList(elements));
|
|
}
|
|
|
|
public static <T> HashSet<T> newTroveSet(List<T> strategy, T... elements) {
|
|
return new HashSet<T>();
|
|
}
|
|
|
|
} |