Skip to content

Commit

Permalink
Fix: Add toString override in ShareId.
Browse files Browse the repository at this point in the history
Only relevant to error messages.
  • Loading branch information
LlamaLad7 committed May 28, 2024
1 parent 8d236a5 commit a0bbc24
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,10 @@ public boolean equals(Object o) {
public int hashCode() {
return Objects.hash(namespace, id);
}

@Override
public String toString() {
return namespace + ':' + id;
}
}
}

0 comments on commit a0bbc24

Please sign in to comment.