(Collection<Type> types)
| 524 | } |
| 525 | |
| 526 | private static Type[] toArray(Collection<Type> types) { |
| 527 | return types.toArray(new Type[types.size()]); |
| 528 | } |
| 529 | |
| 530 | private static Iterable<Type> filterUpperBounds(Iterable<Type> bounds) { |
| 531 | return Iterables.filter(bounds, Predicates.not(Predicates.<Type>equalTo(Object.class))); |
no test coverage detected