Skip to content

Commit

Permalink
remove toString leftover
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Fukushima <[email protected]>
  • Loading branch information
gfukushima committed Apr 21, 2024
1 parent 5dff832 commit 8c7baea
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,4 @@ private void validateG1Point(final Bytes g1Point) {
private void validateG2Point(final Bytes g2Point) {
checkArgument(g2Point.size() == BYTES_PER_G2, "Expected G2 point to be %s bytes", BYTES_PER_G2);
}

@Override
public String toString() {
return "TrustedSetup[" + "g1Points=" + g1Points + ", " + "g2Points=" + g2Points + ']';
}
}

0 comments on commit 8c7baea

Please sign in to comment.