Skip to content

Commit 6cbcad8

Browse files
committed
Suppress Sonar Issue
1 parent f966fff commit 6cbcad8

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/KafkaMessageListenerContainer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2252,7 +2252,7 @@ private void invokeRecordListener(final ConsumerRecords<K, V> records) {
22522252
* Invoke the listener with each record in a separate transaction.
22532253
* @param records the records.
22542254
*/
2255-
@SuppressWarnings(RAW_TYPES)
2255+
@SuppressWarnings(RAW_TYPES) // NOSONAR complexity
22562256
private void invokeRecordListenerInTx(final ConsumerRecords<K, V> records) {
22572257
Iterator<ConsumerRecord<K, V>> iterator = records.iterator();
22582258
while (iterator.hasNext()) {

0 commit comments

Comments
 (0)