Skip to content

Commit

Permalink
adjust format
Browse files Browse the repository at this point in the history
  • Loading branch information
hehuiyuan committed Mar 17, 2021
1 parent 2d55215 commit dc9db2c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -94,7 +94,8 @@ public Kafka properties(Properties properties) {
this.kafkaProperties = new HashMap<>();
}
this.kafkaProperties.clear();
properties.forEach((k, v) -> this.kafkaProperties.put(String.valueOf(k), String.valueOf(v)));
properties.forEach(
(k, v) -> this.kafkaProperties.put(String.valueOf(k), String.valueOf(v)));
return this;
}

Expand Down

0 comments on commit dc9db2c

Please sign in to comment.