Revert I18nBase style fix (get tests to pass, apply later)
This commit is contained in:
parent
87473e05f4
commit
6deb3ea16d
|
@ -125,7 +125,7 @@ public abstract class I18nBase {
|
|||
if (Objects.nonNull(theMessageArguments) && theMessageArguments.length > 0) {
|
||||
message = MessageFormat.format(messages.getString(theMessage).trim(), theMessageArguments);
|
||||
} else {
|
||||
message = MessageFormat.format(messages.getString(theMessage).trim(), (Object) null);
|
||||
message = MessageFormat.format(messages.getString(theMessage).trim(), null);
|
||||
}
|
||||
}
|
||||
return message;
|
||||
|
|
Loading…
Reference in New Issue