Skip to content

Commit f7fef93

Browse files
scordiosdeleuze
authored andcommitted
Refine nullability of MethodInvoker#setArguments
Closes gh-35089 Signed-off-by: Stefano Cordio <[email protected]>
1 parent 841d9fb commit f7fef93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/util/MethodInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void setStaticMethod(String staticMethod) {
127127
* Set arguments for the method invocation. If this property is not set,
128128
* or the Object array is of length 0, a method with no arguments is assumed.
129129
*/
130-
public void setArguments(@Nullable Object... arguments) {
130+
public void setArguments(@Nullable Object @Nullable ... arguments) {
131131
this.arguments = arguments;
132132
}
133133

0 commit comments

Comments
 (0)