Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2.x' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Aug 2, 2019
2 parents 8b56d58 + 4ab53ed commit 0a87a56
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/omnifaces/util/MapWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ public Collection<V> values() {
return getWrapped().values();
}

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

public Map<K, V> getWrapped() {
return map;
}
Expand Down

0 comments on commit 0a87a56

Please sign in to comment.