Skip to content

Commit afa4833

Browse files
mabbayPaul Sandoz
authored andcommitted
8271268: Fix Javadoc links for Stream.mapMulti
Reviewed-by: liach, psandoz
1 parent 9688ec2 commit afa4833

File tree

1 file changed

+4
-4
lines changed
  • src/java.base/share/classes/java/util/stream

1 file changed

+4
-4
lines changed

src/java.base/share/classes/java/util/stream/Stream.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
276276
* function to apply to each element which produces a stream
277277
* of new values
278278
* @return the new stream
279-
* @see #mapMulti
279+
* @see #mapMulti mapMulti
280280
*/
281281
<R> Stream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper);
282282

@@ -296,7 +296,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
296296
* function to apply to each element which produces a stream
297297
* of new values
298298
* @return the new stream
299-
* @see #flatMap(Function)
299+
* @see #flatMap flatMap
300300
*/
301301
IntStream flatMapToInt(Function<? super T, ? extends IntStream> mapper);
302302

@@ -316,7 +316,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
316316
* function to apply to each element which produces a stream
317317
* of new values
318318
* @return the new stream
319-
* @see #flatMap(Function)
319+
* @see #flatMap flatMap
320320
*/
321321
LongStream flatMapToLong(Function<? super T, ? extends LongStream> mapper);
322322

@@ -336,7 +336,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
336336
* function to apply to each element which produces a stream
337337
* of new values
338338
* @return the new stream
339-
* @see #flatMap(Function)
339+
* @see #flatMap flatMap
340340
*/
341341
DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper);
342342

0 commit comments

Comments
 (0)