I'm using guava Multiset library using their maven dependency version 18.0.
I had a following code that used to work fine until a few weeks ago:
ImmutableMultiset<String> entryList = Multisets.copyHighestCountFirst(weightedDocs);
which returns a sorted list of a given multiset. But suddenly my IDE shows that the method doesn't exist, and woudln't compile. I checked their code in github, but the static method seems to be still alive... what would be a problem??