Commit 67a9bd533b27ef6137fb2f462b4c94f2876d5a3f

Authored by 张志伟
1 parent fe6f1a7f

:sparkles: BUG修复

fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java
... ... @@ -129,6 +129,6 @@ public class CallReportDealTask {
129 129 if (CollectionUtils.isEmpty(customerList)) {
130 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 }
... ...