8136494: Update "@since 1.9" to "@since 9" to match java.version.specification

Reviewed-by: alanb, chegar, lancea, prr
This commit is contained in:
Iris Clark 2016-01-20 11:02:36 -08:00
parent 298315e8f8
commit 9d07dc02e1
124 changed files with 297 additions and 297 deletions

View file

@ -326,7 +326,7 @@ public interface IntStream extends BaseStream<Integer, IntStream> {
* predicate to apply to elements to determine the longest
* prefix of elements.
* @return the new stream
* @since 1.9
* @since 9
*/
default IntStream takeWhile(IntPredicate predicate) {
Objects.requireNonNull(predicate);
@ -392,7 +392,7 @@ public interface IntStream extends BaseStream<Integer, IntStream> {
* predicate to apply to elements to determine the longest
* prefix of elements.
* @return the new stream
* @since 1.9
* @since 9
*/
default IntStream dropWhile(IntPredicate predicate) {
Objects.requireNonNull(predicate);