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-26 15:04:49 +02:00
committed by Sébastien Deleuze
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;
}