--- jsr166/src/main/java/util/Queue.java 2003/08/01 19:34:05 1.12 +++ jsr166/src/main/java/util/Queue.java 2003/08/04 01:54:13 1.13 @@ -20,8 +20,9 @@ package java.util; * which would be removed by a call to {@link #remove() } or {@link #poll()}. * Every Queue implementation must specify its ordering guarantees. * - *

The {@link #offer offer(E)} method adds an element if possible, otherwise - * returning false. This differs from the {@link java.util.Collection#add Collection.add(E)} + *

The {@link #offer offer} method adds an element if possible, otherwise + * returning false. This differs from the + * {@link java.util.Collection#add Collection.add} * method, which throws an unchecked exception upon * failure. It is designed for use in collections in which failure to * add is a normal, rather than exceptional occurrence, for example,