Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557
(Iterable<T> iterable)
| 1132 | */ |
| 1133 | |
| 1134 | static <T> Multiset<T> cast(Iterable<T> iterable) { |
| 1135 | return (Multiset<T>) iterable; |
| 1136 | } |
| 1137 | |
| 1138 | private static final Ordering<Entry<?>> DECREASING_COUNT_ORDERING = new Ordering<Entry<?>>() { |
| 1139 | @Override |
no outgoing calls
no test coverage detected