(TypeVariable<?> type)
| 882 | @CanIgnoreReturnValue final TypeToken<T> rejectTypeVariables() { |
| 883 | new TypeVisitor() { |
| 884 | @Override |
| 885 | void visitTypeVariable(TypeVariable<?> type) { |
| 886 | throw new IllegalArgumentException(runtimeType + "contains a type variable and is not safe for the operation"); |
| 887 | } |
| 888 | |
| 889 | @Override |
| 890 | void visitWildcardType(WildcardType type) { |