Skip to content

Commit

Permalink
Removed brackets when listing modules for duplicated keys
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb committed Sep 27, 2024
1 parent 3cea213 commit bd3bb7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private static void appendAstObjectToProperties(String prefix, ReadOnlyAstObject
public static void logDuplicatedKeysWarnings() {
KEYS_MODULES.forEach((sKey, modules) -> {
if (modules.size() > 1) {
Logger.warning("Duplicated key " + sKey + " used by " + Collections.toString(modules));
Logger.warning("Duplicated key " + sKey + " used by " + Collections.toString(modules, false, false));
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/dev/webfx/cli/version/dev/version.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.1.0-SNAPSHOT
build.timestamp=2024-09-27 10:44
build.timestamp=2024-09-27 10:47

0 comments on commit bd3bb7d

Please sign in to comment.