I have a list/collection of objects that may or may not have the same property values. What\'s the easiest way to get a distinct list of the objects with equal properties? I
order preserving version of the above response
return new ArrayList(new LinkedHashSet(recipients));