@@ -74,8 +74,8 @@ final class DebugErrorThrowingI18NMissingMessageHandler implements I18nMissingMe
7474 String argsStringInParenthesis = argsString .isEmpty () ? "" : "(" + argsString .substring (1 , argsString .length () - 1 ) + ')' ;
7575 String keys = StreamSupport .stream (checked .spliterator (), false )
7676 .map (I18nKey ::toShortString )
77- .collect (Collectors .joining ("\n " ));
78- throw new I18nMessagesException (format ("Missing message %s%s\n Checked i18n keys:\n %s" , key .toShortString (), argsStringInParenthesis , keys ));
77+ .collect (Collectors .joining ("\n " ));
78+ throw new I18nMessagesException (format ("Missing message %s%s. Checked keys:\n %s" , key .toShortString (), argsStringInParenthesis , keys ));
7979 }
8080
8181 @ Override
@@ -86,7 +86,7 @@ final class DebugErrorThrowingI18NMissingMessageHandler implements I18nMissingMe
8686 String argsStringInParenthesis = argsString .isEmpty () ? "" : "(" + argsString .substring (1 , argsString .length () - 1 ) + ')' ;
8787 String keys = StreamSupport .stream (checked .spliterator (), false )
8888 .map (I18nKey ::toShortString )
89- .collect (Collectors .joining ("\n " ));
90- throw new I18nMessagesException (format ("Missing message %s%s\n Checked i18n keys:\n %s" , key .toShortString (), argsStringInParenthesis , keys ));
89+ .collect (Collectors .joining ("\n " ));
90+ throw new I18nMessagesException (format ("Missing message %s%s. Checked keys:\n %s" , key .toShortString (), argsStringInParenthesis , keys ));
9191 }
9292}
0 commit comments