Refine nullability of MethodInvoker#setArguments
Closes gh-35089 Signed-off-by: Stefano Cordio <stefano.cordio@gmail.com>
This commit is contained in:
parent
841d9fb73b
commit
f7fef93842
|
@ -127,7 +127,7 @@ public class MethodInvoker {
|
|||
* Set arguments for the method invocation. If this property is not set,
|
||||
* or the Object array is of length 0, a method with no arguments is assumed.
|
||||
*/
|
||||
public void setArguments(@Nullable Object... arguments) {
|
||||
public void setArguments(@Nullable Object @Nullable ... arguments) {
|
||||
this.arguments = arguments;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue