Skip to content

Commit 084ae0f

Browse files
committed
Remove javax.annotation.Nullable from RecordInRetryException
1 parent 7042706 commit 084ae0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-kafka/src/main/java/org/springframework/kafka/listener/RecordInRetryException.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2024-2024 the original author or authors.
2+
* Copyright 2024-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,15 +16,15 @@
1616

1717
package org.springframework.kafka.listener;
1818

19-
import javax.annotation.Nullable;
19+
import org.jspecify.annotations.Nullable;
2020

2121
import org.springframework.core.NestedRuntimeException;
2222

2323
/**
2424
* Internal {@link NestedRuntimeException} that is used as an exception thrown
2525
* when the record is in retry and not yet recovered during error handling.
2626
* This is to prevent the record from being prematurely committed in the middle of a retry.
27-
*
27+
* <p>
2828
* Intended only for framework use and thus the package-protected access.
2929
*
3030
* @author Soby Chacko

0 commit comments

Comments
 (0)