MCPcopy Create free account
hub / github.com/ScriptKid-Beta/Unexpected_information / removeDuplicate

Method removeDuplicate

src/main/java/burp/Re.java:148–152  ·  view source on GitHub ↗
(ArrayList<String> strings)

Source from the content-addressed store, hash-verified

146 }
147 // 去重代码
148 public static List<String> removeDuplicate (ArrayList<String> strings){
149 List<String> list2 = new ArrayList<String>(strings);
150 list2 = list2.stream().distinct().collect(Collectors.toList());
151 return list2;
152 }
153
154}

Callers 7

PhoneMethod · 0.95
IdCardMethod · 0.95
PasswordMethod · 0.95
IPMethod · 0.95
EmailMethod · 0.95
PathMethod · 0.95
UrlMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected