--- old/src/java.base/share/classes/java/util/Queue.java 2017-08-18 15:03:12.446869991 -0700 +++ new/src/java.base/share/classes/java/util/Queue.java 2017-08-18 15:03:12.218860018 -0700 @@ -46,28 +46,32 @@ * use with capacity-restricted {@code Queue} implementations; in most * implementations, insert operations cannot fail. * - * + *
* + * * * - * - * + * + * * + * + * * - * + * * * * * - * + * * * * * - * + * * * * + * *
Summary of Queue methods
Throws exceptionReturns special valueThrows exceptionReturns special value
InsertInsert{@link #add(Object) add(e)}{@link #offer(Object) offer(e)}
RemoveRemove{@link #remove() remove()}{@link #poll() poll()}
ExamineExamine{@link #element() element()}{@link #peek() peek()}
* *

Queues typically, but do not necessarily, order elements in a