@@ -74,8 +74,8 @@ final class DebugErrorThrowingI18NMissingMessageHandler implements I18nMissingMe
74
74
String argsStringInParenthesis = argsString .isEmpty () ? "" : "(" + argsString .substring (1 , argsString .length () - 1 ) + ')' ;
75
75
String keys = StreamSupport .stream (checked .spliterator (), false )
76
76
.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 ));
79
79
}
80
80
81
81
@ Override
@@ -86,7 +86,7 @@ final class DebugErrorThrowingI18NMissingMessageHandler implements I18nMissingMe
86
86
String argsStringInParenthesis = argsString .isEmpty () ? "" : "(" + argsString .substring (1 , argsString .length () - 1 ) + ')' ;
87
87
String keys = StreamSupport .stream (checked .spliterator (), false )
88
88
.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 ));
91
91
}
92
92
}
0 commit comments