Remove over-loud html javadoc

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131510 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-01-04 18:56:37 +00:00
parent 78c075b619
commit 220b87ff78
4 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,10 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedFifoBuffer.java,v 1.13 2003/11/29 18:14:20 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedFifoBuffer.java,v 1.14 2004/01/04 18:55:03 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights * Copyright (c) 2002-2004 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -64,7 +64,7 @@ import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
/** /**
* The BoundedFifoBuffer is a <strong>very</strong> efficient implementation of * The BoundedFifoBuffer is a very efficient implementation of
* Buffer that does not alter the size of the buffer at runtime. * Buffer that does not alter the size of the buffer at runtime.
* <p> * <p>
* The removal order of a <code>BoundedFifoBuffer</code> is based on the * The removal order of a <code>BoundedFifoBuffer</code> is based on the
@ -85,7 +85,7 @@ import java.util.NoSuchElementException;
* *
* @deprecated Moved to buffer subpackage. Due to be removed in v4.0. * @deprecated Moved to buffer subpackage. Due to be removed in v4.0.
* @since 2.1 * @since 2.1
* @version $Revision: 1.13 $ $Date: 2003/11/29 18:14:20 $ * @version $Revision: 1.14 $ $Date: 2004/01/04 18:55:03 $
* *
* @author Avalon * @author Avalon
* @author Berin Loritsch * @author Berin Loritsch

View File

@ -1,10 +1,10 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java,v 1.12 2003/11/29 18:04:57 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java,v 1.13 2004/01/04 18:55:03 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights * Copyright (c) 2002-2004 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -62,7 +62,7 @@ import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
/** /**
* UnboundedFifoBuffer is a <strong>very</strong> efficient buffer implementation. * UnboundedFifoBuffer is a very efficient buffer implementation.
* According to performance testing, it exhibits a constant access time, but it * According to performance testing, it exhibits a constant access time, but it
* also outperforms ArrayList when used for the same purpose. * also outperforms ArrayList when used for the same purpose.
* <p> * <p>
@ -84,7 +84,7 @@ import java.util.NoSuchElementException;
* *
* @deprecated Moved to buffer subpackage. Due to be removed in v4.0. * @deprecated Moved to buffer subpackage. Due to be removed in v4.0.
* @since Commons Collections 2.1 * @since Commons Collections 2.1
* @version $Revision: 1.12 $ $Date: 2003/11/29 18:04:57 $ * @version $Revision: 1.13 $ $Date: 2004/01/04 18:55:03 $
* *
* @author Avalon * @author Avalon
* @author Federico Barbieri * @author Federico Barbieri

View File

@ -1,10 +1,10 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java,v 1.4 2004/01/01 19:24:46 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java,v 1.5 2004/01/04 18:56:37 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights * Copyright (c) 2002-2004 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -69,7 +69,7 @@ import org.apache.commons.collections.BufferOverflowException;
import org.apache.commons.collections.BufferUnderflowException; import org.apache.commons.collections.BufferUnderflowException;
/** /**
* The BoundedFifoBuffer is a <strong>very</strong> efficient implementation of * The BoundedFifoBuffer is a very efficient implementation of
* Buffer that does not alter the size of the buffer at runtime. * Buffer that does not alter the size of the buffer at runtime.
* <p> * <p>
* The removal order of a <code>BoundedFifoBuffer</code> is based on the * The removal order of a <code>BoundedFifoBuffer</code> is based on the
@ -89,7 +89,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/01 19:24:46 $ * @version $Revision: 1.5 $ $Date: 2004/01/04 18:56:37 $
* *
* @author Avalon * @author Avalon
* @author Berin Loritsch * @author Berin Loritsch

View File

@ -1,10 +1,10 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java,v 1.3 2004/01/01 19:24:46 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.4 2004/01/04 18:56:37 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights * Copyright (c) 2002-2004 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -65,7 +65,7 @@ import org.apache.commons.collections.Buffer;
import org.apache.commons.collections.BufferUnderflowException; import org.apache.commons.collections.BufferUnderflowException;
/** /**
* UnboundedFifoBuffer is a <strong>very</strong> efficient buffer implementation. * UnboundedFifoBuffer is a very efficient buffer implementation.
* According to performance testing, it exhibits a constant access time, but it * According to performance testing, it exhibits a constant access time, but it
* also outperforms ArrayList when used for the same purpose. * also outperforms ArrayList when used for the same purpose.
* <p> * <p>
@ -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.3 $ $Date: 2004/01/01 19:24:46 $ * @version $Revision: 1.4 $ $Date: 2004/01/04 18:56:37 $
* *
* @author Avalon * @author Avalon
* @author Federico Barbieri * @author Federico Barbieri