Skip to content

Commit

Permalink
Fix issue mentioned in eclipse#1196: Missing toString() method in Uni…
Browse files Browse the repository at this point in the history
…fiedMap.EntrySet

Signed-off-by: Rustam Mehmandarov <mehmandarov@gmail.com>
  • Loading branch information
mehmandarov committed Feb 20, 2022
1 parent 28d982e commit 7b173e4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2897,6 +2897,12 @@ public int hashCode()
{
return UnifiedMap.this.hashCode();
}

@Override
public String toString()
{
return Iterate.makeString(this, "[", ", ", "]");
}
}

protected class EntrySetIterator extends PositionalIterator<Entry<K, V>>
Expand Down

0 comments on commit 7b173e4

Please sign in to comment.