Skip to content

Commit

Permalink
Fixed warning message parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed May 11, 2022
1 parent 277df2a commit f1a68bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public void handleConfigChange(Map<String, String> buildTimeConfig) {
if (mismatches == null) {
mismatches = new ArrayList<>();
}
mismatches.add(" - " + entry.getKey() + " is set to '" + entry.getValue()
+ "' but it is build time fixed to '" + val.get() + "'. Did you change the property "
mismatches.add(" - " + entry.getKey() + " is set to '" + val.get()
+ "' but it is build time fixed to '" + entry.getValue() + "'. Did you change the property "
+ entry.getKey() + " after building the application?");
}
}
Expand Down

0 comments on commit f1a68bd

Please sign in to comment.