Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557
(Iterable<T> iterable)
| 321 | */ |
| 322 | |
| 323 | static <T> Collection<T> cast(Iterable<T> iterable) { |
| 324 | return (Collection<T>) iterable; |
| 325 | } |
| 326 | |
| 327 | static final Joiner STANDARD_JOINER = Joiner.on(", ").useForNull("null"); |
| 328 |
no outgoing calls
no test coverage detected