An implementation of Map#toString.
(Map<?, ?> map)
| 3650 | */ |
| 3651 | |
| 3652 | static String toStringImpl(Map<?, ?> map) { |
| 3653 | StringBuilder sb = Collections2.newStringBuilderForCollection(map.size()).append('{'); |
| 3654 | STANDARD_JOINER.appendTo(sb, map); |
| 3655 | return sb.append('}').toString(); |
| 3656 | } |
| 3657 | |
| 3658 | /** |
| 3659 | * An implementation of {@link Map#putAll}. |
no test coverage detected