Skip to content

Commit

Permalink
fix missing space in message
Browse files Browse the repository at this point in the history
  • Loading branch information
skerdudou committed Jun 7, 2024
1 parent 304a53f commit 806839a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void load(final Locale locale, final ResourceBundle resourceBundle, fina
Assertion.check().isNotNull(value);
final String oldValue = getDictionary(locale).put(key, value);
if (!override) {
Assertion.check().isNull(oldValue, "Valeur deja renseignée pour{0}", key);
Assertion.check().isNull(oldValue, "Valeur deja renseignée pour {0}", key);
}
}
}
Expand Down

0 comments on commit 806839a

Please sign in to comment.