Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Aug 2, 2023
1 parent 40e2b3c commit 10dd8c0
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 @@ -72,6 +72,6 @@ public boolean equals(Object object) {
}

public String toString() {
return "XdrUint64(uint64=" + this.getNumber() + ")";
return "XdrUnsignedInteger(number=" + this.getNumber() + ")";
}
}
2 changes: 1 addition & 1 deletion src/main/java/org/stellar/sdk/xdr/XdrUnsignedInteger.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ public boolean equals(Object object) {
}

public String toString() {
return "XdrUint32(uint32=" + this.getNumber() + ")";
return "XdrUnsignedInteger(number=" + this.getNumber() + ")";
}
}

0 comments on commit 10dd8c0

Please sign in to comment.