(@Nullable T receiver, Object... args)
| 103 | // All subclasses are owned by us and we'll make sure to get the R type right. |
| 104 | |
| 105 | @SuppressWarnings("unchecked") |
| 106 | @CanIgnoreReturnValue |
| 107 | public final R invoke(@Nullable T receiver, Object... args) throws InvocationTargetException, IllegalAccessException { |
| 108 | return (R) invokeInternal(receiver, checkNotNull(args)); |
| 109 | } |
| 110 | |
| 111 | /** Returns the return type of this {@code Invokable}. */ |
| 112 | // All subclasses are owned by us and we'll make sure to get the R type right. |
no test coverage detected