--- old/src/java.base/share/classes/java/util/concurrent/LinkedBlockingQueue.java 2017-03-14 01:10:01.658136268 -0700 +++ new/src/java.base/share/classes/java/util/concurrent/LinkedBlockingQueue.java 2017-03-14 01:10:01.458136271 -0700 @@ -974,6 +974,7 @@ /** * @throws NullPointerException {@inheritDoc} + * @since 9 */ public void forEach(Consumer action) { Objects.requireNonNull(action); @@ -1015,6 +1016,7 @@ /** * @throws NullPointerException {@inheritDoc} + * @since 9 */ public boolean removeIf(Predicate filter) { Objects.requireNonNull(filter); @@ -1023,6 +1025,7 @@ /** * @throws NullPointerException {@inheritDoc} + * @since 9 */ public boolean removeAll(Collection c) { Objects.requireNonNull(c); @@ -1031,6 +1034,7 @@ /** * @throws NullPointerException {@inheritDoc} + * @since 9 */ public boolean retainAll(Collection c) { Objects.requireNonNull(c);