Skip to content

Commit 47e3e3a

Browse files
committed
Rename method
1 parent d204c2b commit 47e3e3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/i18n/I18nMsg.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public Object[] getMsgArguments() {
3030
return msgArguments.toArray();
3131
}
3232

33-
public I18nMsg argumentAt(int index, Object argument) {
33+
public I18nMsg addArgumentAt(int index, Object argument) {
3434
List<Object> newArgs = new ArrayList<>(this.msgArguments);
3535
newArgs.add(index, argument);
3636
return new I18nMsg(this.msgKey, newArgs);

0 commit comments

Comments
 (0)