Skip to content

Commit

Permalink
brackets format
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenek-jonas committed Oct 25, 2023
1 parent 8b5a96a commit 8bcc57a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,13 @@ protected StorageManagerConfiguration prepareConfiguration()
return new StorageManagerConfiguration(this.normalizeProperties(this.readProperties(PRIMARY_QUALIFIER)));
}

public EmbeddedStorageManager create(Map<String, String> values) {
public EmbeddedStorageManager create(Map<String, String> values)
{
return create(PRIMARY_QUALIFIER, values);
}

public EmbeddedStorageManager create(final String qualifier, Map<String, String> values) {
public EmbeddedStorageManager create(final String qualifier, Map<String, String> values)
{
final EmbeddedStorageFoundation<?> embeddedStorageFoundation = this.embeddedStorageFoundation(qualifier, values);

final MicrostreamConfigurationProperties configuration = new MicrostreamConfigurationProperties();
Expand Down Expand Up @@ -200,7 +202,8 @@ public EmbeddedStorageFoundation<?> embeddedStorageFoundation()
return this.embeddedStorageFoundation(PRIMARY_QUALIFIER, values);
}

public EmbeddedStorageFoundation<?> embeddedStorageFoundation(final Map<String, String> values) {
public EmbeddedStorageFoundation<?> embeddedStorageFoundation(final Map<String, String> values)
{
return this.embeddedStorageFoundation(PRIMARY_QUALIFIER, values);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,13 @@ protected StorageManagerConfiguration prepareConfiguration()
return new StorageManagerConfiguration(this.normalizeProperties(this.readProperties(PRIMARY_QUALIFIER)));
}

public EmbeddedStorageManager create(Map<String, String> values) {
public EmbeddedStorageManager create(Map<String, String> values)
{
return create(PRIMARY_QUALIFIER, values);
}

public EmbeddedStorageManager create(final String qualifier, Map<String, String> values) {
public EmbeddedStorageManager create(final String qualifier, Map<String, String> values)
{
final EmbeddedStorageFoundation<?> embeddedStorageFoundation = this.embeddedStorageFoundation(qualifier, values);

final MicrostreamConfigurationProperties configuration = new MicrostreamConfigurationProperties();
Expand Down Expand Up @@ -200,7 +202,8 @@ public EmbeddedStorageFoundation<?> embeddedStorageFoundation()
return this.embeddedStorageFoundation(PRIMARY_QUALIFIER, values);
}

public EmbeddedStorageFoundation<?> embeddedStorageFoundation(final Map<String, String> values) {
public EmbeddedStorageFoundation<?> embeddedStorageFoundation(final Map<String, String> values)
{
return this.embeddedStorageFoundation(PRIMARY_QUALIFIER, values);
}

Expand Down

0 comments on commit 8bcc57a

Please sign in to comment.