From 67a9bd533b27ef6137fb2f462b4c94f2876d5a3f Mon Sep 17 00:00:00 2001 From: Kurisu Date: Thu, 28 Jan 2021 15:53:50 +0800 Subject: [PATCH] :sparkles: BUG修复 --- fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java b/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java index 829e4ba..9af698d 100644 --- a/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java +++ b/fw-valhalla-server/src/main/java/cn/fw/valhalla/controller/task/CallReportDealTask.java @@ -129,6 +129,6 @@ public class CallReportDealTask { if (CollectionUtils.isEmpty(customerList)) { return null; } - return customerList.stream().map(Customer::getId).toArray(value -> new Long[0]); + return customerList.stream().map(Customer::getId).toArray(Long[]::new); } } -- libgit2 0.22.2