You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rw...@apache.org on 2003/01/05 00:16:30 UTC

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections/primitives IntList.java

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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>