--- old/src/java.base/share/classes/java/util/concurrent/BlockingQueue.java 2017-08-18 15:03:14.158944876 -0700 +++ new/src/java.base/share/classes/java/util/concurrent/BlockingQueue.java 2017-08-18 15:03:13.946935603 -0700 @@ -56,31 +56,31 @@ * Summary of BlockingQueue methods * * - * Throws exception - * Special value - * Blocks - * Times out + * Throws exception + * Special value + * Blocks + * Times out * * - * Insert + * Insert * {@link #add(Object) add(e)} * {@link #offer(Object) offer(e)} * {@link #put(Object) put(e)} * {@link #offer(Object, long, TimeUnit) offer(e, time, unit)} * * - * Remove + * Remove * {@link #remove() remove()} * {@link #poll() poll()} * {@link #take() take()} * {@link #poll(long, TimeUnit) poll(time, unit)} * * - * Examine + * Examine * {@link #element() element()} * {@link #peek() peek()} - * not applicable - * not applicable + * not applicable + * not applicable * * *