You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2004/06/27 07:23:48 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/mutable MutableInteger.java

bayard      2004/06/26 22:23:47

  Modified:    lang/src/java/org/apache/commons/lang/mutable
                        MutableInteger.java
  Log:
  fixed return type of getValue
  
  Revision  Changes    Path
  1.4       +2 -2      jakarta-commons/lang/src/java/org/apache/commons/lang/mutable/MutableInteger.java
  
  Index: MutableInteger.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/mutable/MutableInteger.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MutableInteger.java	24 Jun 2004 04:20:46 -0000	1.3
  +++ MutableInteger.java	27 Jun 2004 05:23:47 -0000	1.4
  @@ -55,7 +55,7 @@
       }
   
       public Object getValue() {
  -        return new Float(this.value);
  +        return new Integer(this.value);
       }
   
       public void setValue(Object value) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org