How can we remove duplicates from List with the help of Guava api?
Currently I am following this:
private List removeDuplic
If you wanna use Guava at any price you can do
return new ArrayList(HashMultiSet.create(list).elementSet())