()
| 40 | |
| 41 | |
| 42 | protected TypeParameter() { |
| 43 | Type type = capture(); |
| 44 | checkArgument(type instanceof TypeVariable, "%s should be a type variable.", type); |
| 45 | this.typeVariable = (TypeVariable<?>) type; |
| 46 | } |
| 47 | |
| 48 | @Override |
| 49 | public final int hashCode() { |
nothing calls this directly
no test coverage detected