Skip to content

Commit

Permalink
remove System.out.println
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvine500 authored Aug 22, 2023
1 parent baf462d commit 1b6e476
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ public static Set<String> selectAddressByTagLevel(Map<String, Set<String>> tagAd
String[] selectors = StringUtils.split(tagSelector, TAG_SEPERATOR);
for (int i = selectors.length; i > 0; i--) {
String selectorTmp = StringUtils.join(selectors, TAG_SEPERATOR, 0, i);
System.out.println(selectorTmp);
Set<String> addresses = tagAddresses.get(selectorTmp);
if (CollectionUtils.isNotEmpty(addresses)) {
return addresses;
Expand Down

0 comments on commit 1b6e476

Please sign in to comment.