scolebourne    2003/10/14 11:06:41

  Modified:    collections/src/java/org/apache/commons/collections
                        UnboundedFifoBuffer.java
  Log:
  Change class from final to non-final
  
  Revision  Changes    Path
  1.11      +3 -3      
jakarta-commons/collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java
  
  Index: UnboundedFifoBuffer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- UnboundedFifoBuffer.java  14 Oct 2003 18:05:42 -0000      1.10
  +++ UnboundedFifoBuffer.java  14 Oct 2003 18:06:41 -0000      1.11
  @@ -91,7 +91,7 @@
    * @author Paul Jack
    * @author Stephen Colebourne
    */
  -public final class UnboundedFifoBuffer extends AbstractCollection implements Buffer 
{
  +public class UnboundedFifoBuffer extends AbstractCollection implements Buffer {
       
       protected Object[] m_buffer;
       protected int m_head;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to