Skip to content

Commit

Permalink
5271: Typo correction
Browse files Browse the repository at this point in the history
  • Loading branch information
AnumehaSrivastava05 committed Nov 14, 2022
1 parent 08bdcd2 commit 018ad0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public AG0(String message) {

}

public String serializ() {
public String serialize() {
// Serialize is only used in when creating the request
StringBuilder sb = new StringBuilder();
sb.append(StringUtils.rightPad(groupNumber, 7));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void setRpbsHeader(RPBSHeader rpbsHeader) {
}

public String serialize() {
return rpbsHeader.serialize() + ag0.serializ();
return rpbsHeader.serialize() + ag0.serialize();
}

}

0 comments on commit 018ad0f

Please sign in to comment.