--- jsr166/src/main/java/util/AbstractQueue.java 2003/05/27 18:20:06 1.2 +++ jsr166/src/main/java/util/AbstractQueue.java 2003/06/24 14:34:30 1.4 @@ -11,7 +11,9 @@ package java.util; * element based on offer, poll, and peek, respectively but that throw * exceptions instead of indicating failure via false or null returns. * The provided implementations all assume that the base implementation - * does not allow null elements. + * does not allow null elements. + * @since 1.5 + * @author Doug Lea */ public abstract class AbstractQueue extends AbstractCollection implements Queue {