Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557
(Iterable<T> iterable)
| 1103 | * Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557 |
| 1104 | */ |
| 1105 | static <T> Multiset<T> cast(Iterable<T> iterable) { |
| 1106 | return (Multiset<T>) iterable; |
| 1107 | } |
| 1108 | |
| 1109 | private static final Ordering<Entry<?>> DECREASING_COUNT_ORDERING = |
| 1110 | new Ordering<Entry<?>>() { |
no outgoing calls
no test coverage detected