Returns a string containing the string representation of each of parts, using the previously configured separator between each.
(Iterable<?> parts)
| 186 | * previously configured separator between each. |
| 187 | */ |
| 188 | public final String join(Iterable<?> parts) { |
| 189 | return join(parts.iterator()); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Returns a string containing the string representation of each of {@code parts}, using the |
no test coverage detected