mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
25 lines
482 B
Java
25 lines
482 B
Java
|
|
import java.util.Collection;
|
|
import java.util.HashSet;
|
|
|
|
|
|
class A {
|
|
Collection<String> thrownInTryStatement = null;
|
|
final Collection<String> thrownTypes = ContainerUtil.newHashSet( thrownInTryStatement);
|
|
}
|
|
|
|
|
|
class ContainerUtil extends ContainerUtilRt{
|
|
public static <T> HashSet<T> newHashSet(Iterable<? extends T> iterable) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
class ContainerUtilRt {
|
|
public static <T> HashSet<T> newHashSet(Iterable<? extends T> iterable) {
|
|
return null;
|
|
}
|
|
|
|
}
|