Fix spacing in KafkaEmitterConfig (#4663)

This commit is contained in:
Roman Leventov 2017-08-08 15:12:01 +03:00 committed by GitHub
parent f8dcb05fd1
commit 59a2507268
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class KafkaEmitterConfig
this.metricTopic = Preconditions.checkNotNull(metricTopic, "metric.topic can not be null");
this.alertTopic = Preconditions.checkNotNull(alertTopic, "alert.topic can not be null");
this.clusterName = clusterName;
this.kafkaProducerConfig = kafkaProducerConfig == null? ImmutableMap.<String,String>of() : kafkaProducerConfig;
this.kafkaProducerConfig = kafkaProducerConfig == null ? ImmutableMap.of() : kafkaProducerConfig;
}
@JsonProperty