Fix javadoc
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131520 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b1843b10d
commit
eedfe8bd88
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java,v 1.4 2004/01/04 18:56:37 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java,v 1.5 2004/01/05 21:33:22 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -86,7 +86,7 @@ import org.apache.commons.collections.BufferUnderflowException;
|
||||||
* This buffer prevents null objects from being added.
|
* This buffer prevents null objects from being added.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0 (previously in main package v2.1)
|
* @since Commons Collections 3.0 (previously in main package v2.1)
|
||||||
* @version $Revision: 1.4 $ $Date: 2004/01/04 18:56:37 $
|
* @version $Revision: 1.5 $ $Date: 2004/01/05 21:33:22 $
|
||||||
*
|
*
|
||||||
* @author Avalon
|
* @author Avalon
|
||||||
* @author Federico Barbieri
|
* @author Federico Barbieri
|
||||||
|
@ -160,7 +160,6 @@ public class UnboundedFifoBuffer extends AbstractCollection implements Buffer {
|
||||||
* @param obj the element to add
|
* @param obj the element to add
|
||||||
* @return true, always
|
* @return true, always
|
||||||
* @throws NullPointerException if the given element is null
|
* @throws NullPointerException if the given element is null
|
||||||
* @throws BufferOverflowException if this buffer is full
|
|
||||||
*/
|
*/
|
||||||
public boolean add(final Object obj) {
|
public boolean add(final Object obj) {
|
||||||
if (obj == null) {
|
if (obj == null) {
|
||||||
|
|
Loading…
Reference in New Issue