Skip to content

Commit e38687b

Browse files
committed
Fix new Sonar issue
1 parent 629a07e commit e38687b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private void resumePartition(Context context) {
209209
}
210210

211211
private MessageListenerContainer getListenerContainerFromContext(Context context) {
212-
return this.listenerContainerRegistry.getListenerContainer(context.getListenerId());
212+
return this.listenerContainerRegistry.getListenerContainer(context.getListenerId()); // NOSONAR
213213
}
214214

215215
protected void addBackoff(Context context, TopicPartition topicPartition) {

0 commit comments

Comments
 (0)