1
1
Fork 0

Update java8.md

This commit is contained in:
yura182 2020-02-20 21:30:47 +02:00 committed by Enchased Horse
parent ff06cc5566
commit 9db7c0ddb6
1 changed files with 0 additions and 1 deletions

View File

@ -714,7 +714,6 @@ Stream
.of(1, 2, 3, 2, 1)
.map(s -> s * s)
.distinct()
.collect(Collectors.toList())
.forEach(System.out::println);
```