Skip to content

Commit

Permalink
entrace
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangjunjie committed Oct 29, 2021
1 parent aa951c9 commit af2a7d6
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,11 @@ public List<ApplicationEntrancesResponse> getApplicationAllEntrancesByActivity(S
return Lists.newArrayList();
}
return activities.stream()
.map(item -> {
.filter(item -> {
String entrace = item.getEntrace();
String[] entraceArray = entrace.split("\\|");
return 4 == entraceArray.length;
}).map(item -> {
String entrace = item.getEntrace();
String[] entraceArray = entrace.split("\\|");
ApplicationEntrancesResponse applicationEntrancesResponse = new ApplicationEntrancesResponse();
Expand Down

0 comments on commit af2a7d6

Please sign in to comment.