Skip to content
This repository was archived by the owner on Sep 6, 2018. It is now read-only.

Commit

Permalink
Add toString methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Aug 29, 2018
1 parent 6e9f79d commit eacbaae
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,12 @@ public Message toProtoMessage() {
private interface ExcludesDelegateMethods<T> {
Stream<T> stream();
}

@Override
public String toString() {
return "PersistableList{" +
"\n list=" + list +
",\n toProto=" + toProto +
"\n}";
}
}

0 comments on commit eacbaae

Please sign in to comment.