From e410b2685e764935fa38a5c29aaf6f625b5cf397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=87=A7=E8=87=A7?= <2556450572@qq.com> Date: Wed, 24 Aug 2022 13:26:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9EasyStream=E4=B8=AD=E8=A1=A5=E5=85=85p?= =?UTF-8?q?eekIdx()=E6=96=B9=E6=B3=95,mapMulti=E9=80=82=E9=85=8D=E4=BA=8E?= =?UTF-8?q?=E6=9B=B4=E9=AB=98=E7=89=88=E6=9C=ACJDK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java b/hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java index cd8f71d19..daa942149 100644 --- a/hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java +++ b/hutool-core/src/main/java/cn/hutool/core/stream/EasyStream.java @@ -643,7 +643,7 @@ public class EasyStream implements Stream, Iterable { * .filter(e -> e.length() > 3) * .peekIdx((e,i) -> System.out.println("Filtered value: " + e + " Filtered idx:" + i)) * .map(String::toUpperCase) - * .peekIdx((e,i) -> System.out.println("Mapped value: " + e + " Filtered idx:" + i)) + * .peekIdx((e,i) -> System.out.println("Mapped value: " + e + " Mapped idx:" + i)) * .collect(Collectors.toList()); * } */