Merge branch 'BAEL-2184'

This commit is contained in:
clininger
2018-10-09 21:23:40 +07:00

View File

@@ -75,7 +75,6 @@ public class FooUnitTest {
@Test
public void whenUsingSortedStream_thenVerifySortOrder() {
ArrayList<Foo> newList = srcCollection.stream()
.map(foo -> foo.deepCopy())
.sorted(Comparator.comparing(Foo::getName))
.collect(toCollection(ArrayList::new));