rwaldhoff    2003/01/04 15:16:29

  Modified:    collections/src/java/org/apache/commons/collections/primitives
                        IntList.java
  Log:
  get should return int not Object
  
  Revision  Changes    Path
  1.2       +5 -5      
jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/IntList.java
  
  Index: IntList.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/primitives/IntList.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IntList.java      4 Jan 2003 15:00:57 -0000       1.1
  +++ IntList.java      4 Jan 2003 23:16:29 -0000       1.2
  @@ -78,7 +78,7 @@
        * Returns the element at the specified position within 
        * me. 
        */
  -    Object get(int index);
  +    int get(int index);
       
       /** 
        * Returns the index of the first occurrence 
  
  
  

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

Reply via email to