Created
August 22, 2019 03:53
-
-
Save yydai/bdba2e260a68bae622a6f7afef4fb2ba to your computer and use it in GitHub Desktop.
java snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// drop the duplicate values | |
Set<String> set = new HashSet<>(fullMatch); | |
fullMatch.clear(); | |
fullMatch.addAll(set); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment