This is an automated email from the ASF dual-hosted git repository. ggregory 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 7e8eb00e9 Javadoc 7e8eb00e9 is described below commit 7e8eb00e9670a4585bbd9e2ce26ab0dfd86f856e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Feb 5 10:20:54 2025 -0500 Javadoc --- .../org/apache/commons/lang3/builder/package-info.java | 2 +- .../java/org/apache/commons/lang3/math/package-info.java | 2 +- src/main/java/org/apache/commons/lang3/package-info.java | 2 +- .../org/apache/commons/lang3/reflect/package-info.java | 4 ++-- .../java/org/apache/commons/lang3/text/package-info.java | 14 +++++++------- .../apache/commons/lang3/text/translate/package-info.java | 6 +++--- .../java/org/apache/commons/lang3/tuple/package-info.java | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/builder/package-info.java b/src/main/java/org/apache/commons/lang3/builder/package-info.java index da3262b9b..61cab1540 100644 --- a/src/main/java/org/apache/commons/lang3/builder/package-info.java +++ b/src/main/java/org/apache/commons/lang3/builder/package-info.java @@ -16,7 +16,7 @@ */ /** - * Assists in creating consistent {@code equals(Object)}, {@code toString()}, {@code hashCode()}, and {@code compareTo(Object)} methods. + * Provides classes to create consistent {@code equals(Object)}, {@code toString()}, {@code hashCode()}, and {@code compareTo(Object)} methods. * These classes are not thread-safe. * * <p>When you write a {@link Object#hashCode() hashCode()}, do you check Bloch's Effective Java? No? diff --git a/src/main/java/org/apache/commons/lang3/math/package-info.java b/src/main/java/org/apache/commons/lang3/math/package-info.java index 978064e9d..f310ea0c2 100644 --- a/src/main/java/org/apache/commons/lang3/math/package-info.java +++ b/src/main/java/org/apache/commons/lang3/math/package-info.java @@ -16,7 +16,7 @@ */ /** - * Extends {@link java.math} for business mathematical classes. + * Provides {@link java.math} extensions for business mathematical classes. * This package is intended for business mathematical use, not scientific use. * See <a href="https://commons.apache.org/proper/commons-math/">Commons Math</a> for a more complete set of mathematical classes. * These classes are immutable, and therefore thread-safe. diff --git a/src/main/java/org/apache/commons/lang3/package-info.java b/src/main/java/org/apache/commons/lang3/package-info.java index d0bdb9589..076c3e0bd 100644 --- a/src/main/java/org/apache/commons/lang3/package-info.java +++ b/src/main/java/org/apache/commons/lang3/package-info.java @@ -16,7 +16,7 @@ */ /** - * Provides highly reusable static utility methods, chiefly concerned with adding value to the {@link java.lang} classes. + * Provides highly reusable utility methods, chiefly concerned with adding value to the {@link java.lang} classes. * Most of these classes are immutable and thus thread-safe. * However {@link org.apache.commons.lang3.CharSet} is not currently guaranteed thread-safe under all circumstances. * diff --git a/src/main/java/org/apache/commons/lang3/reflect/package-info.java b/src/main/java/org/apache/commons/lang3/reflect/package-info.java index c6bc51975..928a5103c 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/package-info.java +++ b/src/main/java/org/apache/commons/lang3/reflect/package-info.java @@ -16,8 +16,8 @@ */ /** - * Accumulates common high-level uses of the {@code java.lang.reflect} APIs. - * <p>These classes are immutable, and therefore thread-safe.</p> + * Provides high-level uses of the {@code java.lang.reflect} APIs. + * <p>These classes are immutable and thread-safe.</p> * * @since 3.0 */ diff --git a/src/main/java/org/apache/commons/lang3/text/package-info.java b/src/main/java/org/apache/commons/lang3/text/package-info.java index 9be8e7270..effbd5ebe 100644 --- a/src/main/java/org/apache/commons/lang3/text/package-info.java +++ b/src/main/java/org/apache/commons/lang3/text/package-info.java @@ -16,17 +16,17 @@ */ /** - * Deprecated: Provides classes for handling and manipulating text, partly as an extension to {@link java.text}. The classes in this package are, for the most part, - * intended to be instantiated (i.e. they are not utility classes with lots of static methods). + * <strong>Deprecated</strong>: Provides classes for handling and manipulating text, partly as an extension to {@link java.text}. The classes in this package + * are, for the most part, intended to be instantiated (i.e. they are not utility classes with lots of static methods). * * <p> - * Amongst other classes, the text package provides a replacement for {@link StringBuffer} named {@link org.apache.commons.lang3.text.StrBuilder}, a - * class for substituting variables within a String named {@link org.apache.commons.lang3.text.StrSubstitutor} and a replacement for - * {@link java.util.StringTokenizer} named {@link org.apache.commons.lang3.text.StrTokenizer}. While somewhat ungainly, the {@code Str} prefix has been used to - * ensure we don't clash with any current or future standard Java classes. + * Amongst other classes, the text package provides a replacement for {@link StringBuffer} named {@link org.apache.commons.lang3.text.StrBuilder}, a class for + * substituting variables within a String named {@link org.apache.commons.lang3.text.StrSubstitutor} and a replacement for {@link java.util.StringTokenizer} + * named {@link org.apache.commons.lang3.text.StrTokenizer}. While somewhat ungainly, the {@code Str} prefix has been used to ensure we don't clash with any + * current or future standard Java classes. * </p> * <p> - * <strong>Deprecated</strong> As of <a href="https://commons.apache.org/proper/commons-lang/changes-report.html#a3.6">3.6</a>, use the Apache Commons Text + * <strong>Deprecated</strong>: As of <a href="https://commons.apache.org/proper/commons-lang/changes-report.html#a3.6">3.6</a>, use the Apache Commons Text * <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/package-summary.html"> text package</a>. * </p> * diff --git a/src/main/java/org/apache/commons/lang3/text/translate/package-info.java b/src/main/java/org/apache/commons/lang3/text/translate/package-info.java index dc464a9fe..2ae589178 100644 --- a/src/main/java/org/apache/commons/lang3/text/translate/package-info.java +++ b/src/main/java/org/apache/commons/lang3/text/translate/package-info.java @@ -16,13 +16,13 @@ */ /** - * Deprecated: Provides text translation routines from a set of smaller building blocks. Initially created to make it possible for the user to customize the - * rules in the StringEscapeUtils class. + * <strong>Deprecated</strong>: Provides text translation routines from a set of smaller building blocks. Initially created to make it possible for the user to + * customize the rules in the StringEscapeUtils class. * <p> * These classes are immutable, and therefore thread-safe. * </p> * <p> - * <strong>Deprecated</strong> As of <a href="https://commons.apache.org/proper/commons-lang/changes-report.html#a3.6">3.6</a>, use the Apache Commons Text + * <strong>Deprecated</strong>: As of <a href="https://commons.apache.org/proper/commons-lang/changes-report.html#a3.6">3.6</a>, use the Apache Commons Text * <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/translate/package-summary.html"> translate package</a>. * </p> * diff --git a/src/main/java/org/apache/commons/lang3/tuple/package-info.java b/src/main/java/org/apache/commons/lang3/tuple/package-info.java index bf4cc397f..0f024ba44 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/package-info.java +++ b/src/main/java/org/apache/commons/lang3/tuple/package-info.java @@ -16,7 +16,7 @@ */ /** - * Tuple classes, both mutable and immutable {@link Pair} and {@link Triple}. + * Provides tuple classes, both mutable and immutable {@link Pair} and {@link Triple}. * * @since 3.0 */