Skip to content

Commit 56021ab

Browse files
committed
Suppress Sonar Issues
1 parent 6ecafd9 commit 56021ab

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -618,17 +618,17 @@ public static class HeaderNames {
618618

619619
static class Original {
620620

621-
final String offsetHeader;
621+
final String offsetHeader; // NOSONAR
622622

623-
final String timestampHeader;
623+
final String timestampHeader; // NOSONAR
624624

625-
final String timestampTypeHeader;
625+
final String timestampTypeHeader; // NOSONAR
626626

627-
final String topicHeader;
627+
final String topicHeader; // NOSONAR
628628

629-
final String partitionHeader;
629+
final String partitionHeader; // NOSONAR
630630

631-
final String consumerGroup;
631+
final String consumerGroup; // NOSONAR
632632

633633
Original(String offsetHeader,
634634
String timestampHeader,
@@ -647,19 +647,19 @@ static class Original {
647647

648648
static class ExceptionInfo {
649649

650-
final String keyExceptionFqcn;
650+
final String keyExceptionFqcn; // NOSONAR
651651

652-
final String exceptionFqcn;
652+
final String exceptionFqcn; // NOSONAR
653653

654-
final String exceptionCauseFqcn;
654+
final String exceptionCauseFqcn; // NOSONAR
655655

656-
final String keyExceptionMessage;
656+
final String keyExceptionMessage; // NOSONAR
657657

658-
final String exceptionMessage;
658+
final String exceptionMessage; // NOSONAR
659659

660-
final String keyExceptionStacktrace;
660+
final String keyExceptionStacktrace; // NOSONAR
661661

662-
final String exceptionStacktrace;
662+
final String exceptionStacktrace; // NOSONAR
663663

664664
ExceptionInfo(String keyExceptionFqcn,
665665
String exceptionFqcn,

0 commit comments

Comments
 (0)