--- jsr166/src/main/java/util/Queue.java 2005/05/02 04:19:58 1.26 +++ jsr166/src/main/java/util/Queue.java 2005/05/02 08:35:49 1.27 @@ -120,11 +120,11 @@ public interface Queue extends Collec * preferable to method {@link Collection#add}, which can fail to * insert an element only by throwing an exception. * - * @param o the element to insert. + * @param e the element to insert. * @return true if it was possible to add the element to * this queue, else false */ - boolean offer(E o); + boolean offer(E e); /** * Retrieves and removes the head of this queue, or null