Skip to content

Commit 59c7f97

Browse files
committed
jspecify changes in the aot package
1 parent b0db30c commit 59c7f97

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: spring-kafka/src/main/java/org/springframework/kafka/aot/KafkaAvroBeanRegistrationAotProcessor.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ public class KafkaAvroBeanRegistrationAotProcessor implements BeanRegistrationAo
5656
private static final boolean AVRO_PRESENT = ClassUtils.isPresent(AVRO_GENERATED_CLASS_NAME, null);
5757

5858
@Override
59-
@Nullable
60-
public BeanRegistrationAotContribution processAheadOfTime(RegisteredBean registeredBean) {
59+
public @Nullable BeanRegistrationAotContribution processAheadOfTime(RegisteredBean registeredBean) {
6160
if (!AVRO_PRESENT) {
6261
return null;
6362
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
22
* Provides classes to support Spring AOT.
33
*/
4-
@org.springframework.lang.NonNullApi
5-
@org.springframework.lang.NonNullFields
4+
@org.jspecify.annotations.NullMarked
65
package org.springframework.kafka.aot;

0 commit comments

Comments
 (0)