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