Skip to content

Commit

Permalink
Fixing checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sskrla authored and sskrla committed Mar 14, 2021
1 parent bc3b7c2 commit a3b48d1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public Map<KafkaStreams, ConfiguredStreamBuilder> getStreams() {
/**
* Builds the default {@link KafkaStreams} bean from the configuration and the supplied {@link ConfiguredStreamBuilder}.
*
* @param name The configuration name
* @param builder The builder
* @param kStreams The KStream definitions
* @return The {@link KafkaStreams} bean
Expand All @@ -101,7 +102,7 @@ KafkaStreams kafkaStreams(
);
eventPublisher.publishEvent(new BeforeKafkaStreamStart(kafkaStreams, kStreams));
streams.put(kafkaStreams, builder);
if(LOG.isDebugEnabled()) {
if (LOG.isDebugEnabled()) {
LOG.debug("Initializing Application {} with topology:\n{}", name, topology.describe().toString());
}
kafkaStreams.start();
Expand Down

0 comments on commit a3b48d1

Please sign in to comment.