Skip to content

Commit f4e9728

Browse files
committed
Fix Sonar issue
1 parent e03cac5 commit f4e9728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-kafka/src/main/java/org/springframework/kafka/config/StreamsBuilderFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void setClientSupplier(KafkaClientSupplier clientSupplier) {
154154
*/
155155
public void setInfrastructureCustomizer(KafkaStreamsInfrastructureCustomizer infrastructureCustomizer) {
156156
Assert.notNull(infrastructureCustomizer, "'infrastructureCustomizer' must not be null");
157-
this.infrastructureCustomizer = infrastructureCustomizer;
157+
this.infrastructureCustomizer = infrastructureCustomizer; // NOSONAR (sync)
158158
}
159159

160160
/**

0 commit comments

Comments
 (0)