Skip to content

Instantly share code, notes, and snippets.

@dario61081
Created July 21, 2017 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dario61081/4306317e7b4cb2dda799de4930cf4f84 to your computer and use it in GitHub Desktop.
Save dario61081/4306317e7b4cb2dda799de4930cf4f84 to your computer and use it in GitHub Desktop.
Remove duplicate items from list
// delete duplicates (if any) from 'myArrayList'
arraylist = new ArrayList<String>(new LinkedHashSet<String>(arraylist));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment