Skip to content

Commit

Permalink
sonar comments + spotlessapply
Browse files Browse the repository at this point in the history
Signed-off-by: Deepak Mishra <[email protected]>
  • Loading branch information
deepak-swirlds committed Oct 23, 2023
1 parent e4723e8 commit 4080638
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ public void beforeEach(final ExtensionContext context) throws Exception {
com.hedera.fullstack.junit.support.model.PlatformConfiguration.Builder platformConfigBuilder =
new com.hedera.fullstack.junit.support.model.PlatformConfiguration.Builder();
if (platformConfigurations != null) {
Stream.of(platformConfigurations.value()).forEach(config -> {
// FUTURE: support values[]
platformConfigBuilder.addConfigurationValue(new ConfigurationValue(config.name(), config.value()));
});
Stream.of(platformConfigurations.value())
.forEach(config ->
// FUTURE: support values[]
platformConfigBuilder.addConfigurationValue(
new ConfigurationValue(config.name(), config.value())));
}

// Topology holds all the information needed to provision
Expand Down

0 comments on commit 4080638

Please sign in to comment.