Commit 3aa05e4402360d8e82c483de876e2cce1bdeae9d

Authored by 张志伟
2 parents ed211b37 67a9bd53

Merge remote-tracking branch 'origin/dev' into test

fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java
@@ -129,6 +129,6 @@ public class CallReportDealTask { @@ -129,6 +129,6 @@ public class CallReportDealTask {
129 if (CollectionUtils.isEmpty(customerList)) { 129 if (CollectionUtils.isEmpty(customerList)) {
130 return null; 130 return null;
131 } 131 }
132 - return customerList.stream().map(Customer::getId).toArray(value -> new Long[0]); 132 + return customerList.stream().map(Customer::getId).toArray(Long[]::new);
133 } 133 }
134 } 134 }