mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-07-04 07:17:26 +07:00
Changed varargs to array
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user