Skip to content

Commit d4a54ca

Browse files
committed
Update to io.spring.nullability to 0.0.6
This commit updates to io.spring.nullability from 0.0.5 to 0.0.6. Signed-off-by: onobc <[email protected]>
1 parent a09ac50 commit d4a54ca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
alias(libs.plugins.grgit) apply false
66
alias(libs.plugins.versions)
77
alias(libs.plugins.version.catalog.update)
8-
id 'io.spring.nullability' version '0.0.5' apply false
8+
id 'io.spring.nullability' version '0.0.6' apply false
99
}
1010

1111
description = 'Spring for Apache Pulsar'

spring-pulsar/src/main/java/org/springframework/pulsar/listener/adapter/HandlerAdapter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public HandlerAdapter(DelegatingInvocableHandler delegatingHandler) {
5252
this.delegatingHandler = delegatingHandler;
5353
}
5454

55+
@SuppressWarnings("NullAway")
5556
public @Nullable Object invoke(Message<?> message, @Nullable Object... providedArgs) throws Exception {
5657
if (this.invokerHandlerMethod != null) {
5758
return this.invokerHandlerMethod.invoke(message, providedArgs);

0 commit comments

Comments
 (0)