You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/07/20 12:24:49 UTC

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

scolebourne    2003/07/20 03:24:49

  Modified:    lang/src/java/org/apache/commons/lang NumberUtils.java
  Log:
  Fix wrong javadoc
  
  Revision  Changes    Path
  1.12      +3 -3      jakarta-commons/lang/src/java/org/apache/commons/lang/NumberUtils.java
  
  Index: NumberUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/NumberUtils.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- NumberUtils.java	24 Jun 2003 21:14:50 -0000	1.11
  +++ NumberUtils.java	20 Jul 2003 10:24:49 -0000	1.12
  @@ -416,7 +416,7 @@
        * @param a  value 1
        * @param b  value 2
        * @param c  value 3
  -     * @return  the largest of the values
  +     * @return  the smallest of the values
        */
       public static long minimum(long a, long b, long c) {
           if (b < a) {
  @@ -434,7 +434,7 @@
        * @param a  value 1
        * @param b  value 2
        * @param c  value 3
  -     * @return  the largest of the values
  +     * @return  the smallest of the values
        */
       public static int minimum(int a, int b, int c) {
           if (b < a) {
  
  
  

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