Skip to content

Commit 2a9912f

Browse files
committed
Upgrade to nullability plugin 0.0.6
Closes gh-1718
1 parent 0a52c1e commit 2a9912f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle/plugins/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ assertJVersion=3.25.3
22
gradleVersionsPluginVersion=0.52.0
33
javaFormatVersion=0.0.47
44
junitVersion=5.11.0
5-
nullabilityPluginVersion=0.0.5
5+
nullabilityPluginVersion=0.0.6

spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/MethodEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public MethodParameter getReturnType() {
125125
* @return the invocation result
126126
* @throws Exception when the method invocation results in an exception
127127
*/
128-
public Object invoke(Object... args) throws Exception {
128+
public Object invoke(@Nullable Object... args) throws Exception {
129129
Object endpoint = getBean();
130130
ReflectionUtils.makeAccessible(this.method);
131131
try {

0 commit comments

Comments
 (0)