diff --git a/src/java/org/apache/commons/lang/SystemUtils.java b/src/java/org/apache/commons/lang/SystemUtils.java index bba319f81..06f6e3664 100644 --- a/src/java/org/apache/commons/lang/SystemUtils.java +++ b/src/java/org/apache/commons/lang/SystemUtils.java @@ -68,7 +68,7 @@ package org.apache.commons.lang; * @author Michael Becke * @author Tetsuya Kaneuchi * @since 1.0 - * @version $Id: SystemUtils.java,v 1.22 2003/08/22 03:06:36 ggregory Exp $ + * @version $Id: SystemUtils.java,v 1.23 2003/08/22 16:34:06 ggregory Exp $ */ public class SystemUtils { @@ -853,8 +853,8 @@ public class SystemUtils { * *
Example input:
*1.2f
to test for JDK 1.2
- * 1.31f
to test for JDK 1.3.1
+ * 1.2f
to test for JDK 1.21.31f
to test for JDK 1.3.1Example input:
*120
to test for JDK 1.2 or greater
- * 131
to test for JDK 1.3.1 or greater
+ * 120
to test for JDK 1.2 or greater131
to test for JDK 1.3.1 or greater