An implementation of Map#toString.
(Map<?, ?> map)
| 3593 | * An implementation of {@link Map#toString}. |
| 3594 | */ |
| 3595 | static String toStringImpl(Map<?, ?> map) { |
| 3596 | StringBuilder sb = Collections2.newStringBuilderForCollection(map.size()).append('{'); |
| 3597 | STANDARD_JOINER.appendTo(sb, map); |
| 3598 | return sb.append('}').toString(); |
| 3599 | } |
| 3600 | |
| 3601 | /** |
| 3602 | * An implementation of {@link Map#putAll}. |
no test coverage detected