Changed varargs to array

This commit is contained in:
Collin Smith 2020-09-21 01:10:16 -07:00
parent 68ada6121f
commit 5b22902b10

View File

@ -30,7 +30,7 @@ public class FormattedMessage implements Message {
: formattedMessage;
}
protected static String format(final Locale locale, final String pattern, final Object... args) {
protected static String format(final Locale locale, final String pattern, final Object[] args) {
try {
return String.format(locale, pattern, args);
} catch (final IllegalFormatException t) {