Skip to content

Commit

Permalink
SKYEDEN-3020 | changes related to CR - added toString for PartitionOf…
Browse files Browse the repository at this point in the history
…fset class
  • Loading branch information
MarcinBobinski committed Jan 9, 2025
1 parent 0ba9900 commit 5780ef7
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,16 @@ public boolean equals(Object obj) {
public int hashCode() {
return Objects.hash(topic, partition, offset);
}

@Override
public String toString() {
return "PartitionOffset{"
+ "topic="
+ topic
+ ", partition="
+ partition
+ ", offset="
+ offset
+ '}';
}
}

0 comments on commit 5780ef7

Please sign in to comment.