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