This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 26b9fd554 Javadoc
26b9fd554 is described below

commit 26b9fd554406004a74564f5811628fd280d5e445
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Apr 27 07:15:38 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/math/NumberUtils.java | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java 
b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
index d81cdae31..26ea13121 100644
--- a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
+++ b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
@@ -519,11 +519,7 @@ public static Number createNumber(final String str) {
     }
 
     /**
-     * Utility method for {@link #createNumber(String)}.
-     *
-     * <p>
-     * Returns mantissa of the given number.
-     * </p>
+     * Gets the mantissa of the given number.
      *
      * @param str     the string representation of the number.
      * @param stopPos the position of the exponent or decimal point.
@@ -541,11 +537,7 @@ private static String getMantissa(final String str, final 
int stopPos) {
     }
 
     /**
-     * Utility method for {@link #createNumber(java.lang.String)}.
-     *
-     * <p>
-     * Returns {@code true} if s is {@code null} or empty.
-     * </p>
+     * Tests whether the given string only contains {@code '0'} characters.
      *
      * @param str the String to check.
      * @return if it is all zeros or {@code null}.

Reply via email to