From 6a9c757a8dee19be9e47f0548378dd3bb158a94f Mon Sep 17 00:00:00 2001 From: darcy Date: Wed, 10 Jul 2013 11:05:39 -0700 Subject: [PATCH] 8020294: Fix doclint issues in java.util.Spliterator Reviewed-by: psandoz --- src/share/classes/java/util/Spliterator.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/share/classes/java/util/Spliterator.java b/src/share/classes/java/util/Spliterator.java index 10c551a59..e3477cf7b 100644 --- a/src/share/classes/java/util/Spliterator.java +++ b/src/share/classes/java/util/Spliterator.java @@ -62,10 +62,10 @@ import java.util.function.LongConsumer; * New characteristics may be defined in the future, so implementors should not * assign meanings to unlisted values. * - *

A Spliterator that does not report {@code IMMUTABLE} or + *

A Spliterator that does not report {@code IMMUTABLE} or * {@code CONCURRENT} is expected to have a documented policy concerning: * when the spliterator binds to the element source; and detection of - * structural interference of the element source detected after binding. A + * structural interference of the element source detected after binding. A * late-binding Spliterator binds to the source of elements at the * point of first traversal, first split, or first query for estimated size, * rather than at the time the Spliterator is created. A Spliterator that is @@ -429,6 +429,7 @@ public interface Spliterator { * The default implementation returns true if the corresponding bits * of the given characteristics are set. * + * @param characteristics the characteristics to check for * @return {@code true} if all the specified characteristics are present, * else {@code false} */ -- GitLab