Skip to content

Commit

Permalink
Merge pull request #155 from donraab/master
Browse files Browse the repository at this point in the history
Add toString to AbstractMutableMultimap.
  • Loading branch information
donraab authored Nov 30, 2023
2 parents 0d9ee52 + 8eebab5 commit 8fc0b3b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,10 @@ public boolean equals(Object obj)
}
return false;
}

@Override
public String toString()
{
return this.getBackingMap().toString();
}
}

0 comments on commit 8fc0b3b

Please sign in to comment.