Skip to content

Commit

Permalink
chore: prepare for release 0.25.1
Browse files Browse the repository at this point in the history
Minor code cleanup to fix warnings.
  • Loading branch information
credmond-git committed Mar 21, 2024
1 parent 6b4e0e5 commit 155d3ec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

allprojects {
group = "com.github.gestalt-config"
version = "0.25.0"
version = "0.25.1"
}


Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public interface Gestalt {
* @param tags tags for the config root to print
* @return string results
*/
String debugPrint(Tags tags);
String debugPrint(Tags tags);

/**
* prints out the contents of all config roots.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ private boolean ignoreError(ValidationError error) {
* @param tags tags for the config root to print
* @return string results
*/
@Override
public String debugPrint(Tags tags) {
return configNodeService.debugPrintRoot(tags, secretConcealer);
}
Expand All @@ -460,6 +461,7 @@ public String debugPrint(Tags tags) {
*
* @return string results
*/
@Override
public String debugPrint() {
return configNodeService.debugPrintRoot(secretConcealer);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public String debugPrintRoot(Tags tags, SecretConcealer secretConcealer) {
public String debugPrintRoot(SecretConcealer secretConcealer) {
return roots.entrySet()
.stream()
.map((it) -> "tags: " + it.getKey() + " = " + it.getValue().printer("", secretConcealer) )
.map((it) -> "tags: " + it.getKey() + " = " + it.getValue().printer("", secretConcealer))
.collect(Collectors.joining("\n"));
}
}

0 comments on commit 155d3ec

Please sign in to comment.