(TypeVariable<?> t)
| 193 | final AtomicReference<Type> result = new AtomicReference<Type>(); |
| 194 | new TypeVisitor() { |
| 195 | @Override |
| 196 | void visitTypeVariable(TypeVariable<?> t) { |
| 197 | result.set(subtypeOfComponentType(t.getBounds())); |
| 198 | } |
| 199 | |
| 200 | @Override |
| 201 | void visitWildcardType(WildcardType t) { |
nothing calls this directly
no test coverage detected