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