Skip to content

Commit

Permalink
修复空指针问题
Browse files Browse the repository at this point in the history
  • Loading branch information
caijianying committed Feb 10, 2022
1 parent 92f87d9 commit 730d43d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ private List<ApplicationErrorOutput> processErrorList(List<ApplicationErrorOutpu
.collect(Collectors.toList());

List<ApplicationErrorOutput> noTimeList = responseList.parallelStream()
.filter(response -> StrUtil.isNotBlank(response.getTime()))
.filter(response -> response != null && StrUtil.isNotBlank(response.getTime()))
.collect(Collectors.toList());

if (sortedList.isEmpty()) {
Expand Down

0 comments on commit 730d43d

Please sign in to comment.