# HG changeset patch
# User michaelm
# Date 1386804426 28800
# Node ID 6106c1f013f1fe1f6226392471fba77d589a60c4
# Parent bb9c71b84919bcc33ce375d9d65179938471b20d
8029696: Broken doc links to package-summary.html#NonInterference in java.util.stream
Reviewed-by: mduigou
diff -r bb9c71b84919 -r 6106c1f013f1 jdk/src/share/classes/java/util/stream/StreamSupport.java
--- a/jdk/src/share/classes/java/util/stream/StreamSupport.java Thu Jan 16 18:20:31 2014 +0100
+++ b/jdk/src/share/classes/java/util/stream/StreamSupport.java Wed Dec 11 15:27:06 2013 -0800
@@ -54,7 +54,7 @@
* late-binding. Otherwise,
* {@link #stream(java.util.function.Supplier, int, boolean)} should be used
* to reduce the scope of potential interference with the source. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param the type of stream elements
@@ -89,7 +89,7 @@
* source. Since the supplier is only invoked after the terminal operation
* commences, any modifications to the source up to the start of the
* terminal operation are reflected in the stream result. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param the type of stream elements
@@ -125,7 +125,7 @@
* late-binding. Otherwise,
* {@link #intStream(java.util.function.Supplier, int, boolean)} should be
* used to reduce the scope of potential interference with the source. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param spliterator a {@code Spliterator.OfInt} describing the stream elements
@@ -158,7 +158,7 @@
* source. Since the supplier is only invoked after the terminal operation
* commences, any modifications to the source up to the start of the
* terminal operation are reflected in the stream result. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param supplier a {@code Supplier} of a {@code Spliterator.OfInt}
@@ -192,7 +192,7 @@
* late-binding. Otherwise,
* {@link #longStream(java.util.function.Supplier, int, boolean)} should be
* used to reduce the scope of potential interference with the source. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param spliterator a {@code Spliterator.OfLong} describing the stream elements
@@ -226,7 +226,7 @@
* source. Since the supplier is only invoked after the terminal operation
* commences, any modifications to the source up to the start of the
* terminal operation are reflected in the stream result. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param supplier a {@code Supplier} of a {@code Spliterator.OfLong}
@@ -260,7 +260,7 @@
* late-binding. Otherwise,
* {@link #doubleStream(java.util.function.Supplier, int, boolean)} should
* be used to reduce the scope of potential interference with the source. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param spliterator A {@code Spliterator.OfDouble} describing the stream elements
@@ -294,7 +294,7 @@
* source. Since the supplier is only invoked after the terminal operation
* commences, any modifications to the source up to the start of the
* terminal operation are reflected in the stream result. See
- * Non-Interference for
+ * Non-Interference for
* more details.
*
* @param supplier A {@code Supplier} of a {@code Spliterator.OfDouble}
diff -r bb9c71b84919 -r 6106c1f013f1 jdk/src/share/classes/java/util/stream/package-info.java
--- a/jdk/src/share/classes/java/util/stream/package-info.java Thu Jan 16 18:20:31 2014 +0100
+++ b/jdk/src/share/classes/java/util/stream/package-info.java Wed Dec 11 15:27:06 2013 -0800
@@ -206,7 +206,7 @@
* as {@link java.util.function.Function}, and are often lambda expressions or
* method references.
*
- *
+ *
*
* Streams enable you to execute possibly-parallel aggregate operations over a
* variety of data sources, including even non-thread-safe collections such as
@@ -729,7 +729,7 @@
* modifications of the data source prior to commencement of the terminal
* operation (provided the behavioral parameters to the stream operations meet
* the required criteria for non-interference and statelessness). See
- * Non-Interference
+ * Non-Interference
* for more details.
*
* @since 1.8