We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d204c2b commit 47e3e3aCopy full SHA for 47e3e3a
src/main/java/graphql/i18n/I18nMsg.java
@@ -30,7 +30,7 @@ public Object[] getMsgArguments() {
30
return msgArguments.toArray();
31
}
32
33
- public I18nMsg argumentAt(int index, Object argument) {
+ public I18nMsg addArgumentAt(int index, Object argument) {
34
List<Object> newArgs = new ArrayList<>(this.msgArguments);
35
newArgs.add(index, argument);
36
return new I18nMsg(this.msgKey, newArgs);
0 commit comments