mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-02-24 21:48:46 +07:00
Changed varargs to array
This commit is contained in:
parent
68ada6121f
commit
5b22902b10
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user