aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ExtensionMethodFunctional.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before/ExtensionMethodFunctional.java')
-rw-r--r--test/transform/resource/before/ExtensionMethodFunctional.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/before/ExtensionMethodFunctional.java b/test/transform/resource/before/ExtensionMethodFunctional.java
index a9e7dd9f..8586dd7a 100644
--- a/test/transform/resource/before/ExtensionMethodFunctional.java
+++ b/test/transform/resource/before/ExtensionMethodFunctional.java
@@ -16,7 +16,7 @@ class ExtensionMethodFunctional {
test.consume(s -> System.out.println("1: " + s), s -> System.out.println("2: " + s));
test.consume(System.out::println, System.out::println);
- Stream.of("a", "b", "c").map(String::toUpperCase).toList();
+ Stream.of("a", "b", "c").map(String::toUpperCase).toList1();
List<Integer> i2 = Stream.of("a", "b", "c").map(String::toUpperCase).toList2();
}
@@ -36,7 +36,7 @@ class ExtensionMethodFunctional {
}
}
- public static <T> List<T> toList(Stream<T> stream) {
+ public static <T> List<T> toList1(Stream<T> stream) {
return (List<T>) stream.collect(Collectors.toList());
}