Concatenates the given objects into a single String @param objects The objects to join @return
(final Object... objects)
| 9 | * @return |
| 10 | */ |
| 11 | public static String join(final Object... objects) { |
| 12 | final StringBuilder b = new StringBuilder(); |
| 13 | for (final Object object : objects) { |
| 14 | b.append(object); |
| 15 | } |
| 16 | return b.toString(); |
| 17 | } |
| 18 | |
| 19 | } |
no test coverage detected