mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Refine nullability of MethodInvoker#setArguments
Closes gh-35089 Signed-off-by: Stefano Cordio <stefano.cordio@gmail.com>
This commit is contained in:
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user