How can we remove duplicates from List with the help of Guava api?
Currently I am following this:
private List removeDuplic
You can try Guava's MultiSet API to remove duplicates.Just add your list do the set and use the count method.
MultiSet