File tree 1 file changed +3
-3
lines changed
src/java.base/share/classes/java/util/stream
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2012, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2012, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
346
346
* <pre>{@code
347
347
* List<String> results =
348
348
* stream.filter(s -> pattern.matcher(s).matches())
349
- * .collect(Collectors. toList() ); // No side-effects!
349
+ * .toList(); // No side-effects!
350
350
* }</pre>
351
351
*
352
352
* <h3><a id="Ordering">Ordering</a></h3>
436
436
* can operate on subsets of the data in parallel, and then combine the
437
437
* intermediate results to get the final correct answer. (Even if the language
438
438
* had a "parallel for-each" construct, the mutative accumulation approach would
439
- * still required the developer to provide
439
+ * still require the developer to provide
440
440
* thread-safe updates to the shared accumulating variable {@code sum}, and
441
441
* the required synchronization would then likely eliminate any performance gain from
442
442
* parallelism.) Using {@code reduce()} instead removes all of the
You can’t perform that action at this time.
0 commit comments