Skip to content

Commit 7951aa1

Browse files
committed
Fix static var.
1 parent 9f869b6 commit 7951aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-kafka/src/main/java/org/springframework/kafka/retrytopic/RetryTopicConfigurationSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public class RetryTopicConfigurationSupport {
7070

7171
private static final String BACK_OFF_MANAGER_THREAD_EXECUTOR_BEAN_NAME = "backOffManagerThreadExecutor";
7272

73-
private static AtomicBoolean ONLY_ONE_ALLOWED = new AtomicBoolean(true);
73+
private static final AtomicBoolean ONLY_ONE_ALLOWED = new AtomicBoolean(true);
7474

7575
private final RetryTopicComponentFactory componentFactory = createComponentFactory();
7676

0 commit comments

Comments
 (0)