Refine nullability of MethodInvoker#setArguments

Closes gh-35089
Signed-off-by: Stefano Cordio <stefano.cordio@gmail.com>
This commit is contained in:
Stefano Cordio 2025-06-21 17:28:21 +02:00 committed by Sébastien Deleuze
parent 841d9fb73b
commit f7fef93842
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}