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 93be4f0a6 Javadoc
93be4f0a6 is described below
commit 93be4f0a656220d58a6e16cae2ab2b66b5ea66bf
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 24 07:41:11 2026 -0500
Javadoc
---
src/main/java/org/apache/commons/lang3/ArrayUtils.java | 2 +-
src/main/java/org/apache/commons/lang3/ObjectUtils.java | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index 9b531ca1e..d2e57b221 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -3293,7 +3293,7 @@ public static boolean isEmpty(final short[] array) {
* @param array1 the left-hand side array to compare, may be {@code null}.
* @param array2 the right-hand side array to compare, may be {@code
null}.
* @return {@code true} if the arrays are equal.
- * @deprecated this method has been replaced by {@code
java.util.Objects.deepEquals(Object, Object)} and will be
+ * @deprecated Replaced by {@code java.util.Objects.deepEquals(Object,
Object)} and will be
* removed from future releases.
*/
@Deprecated
diff --git a/src/main/java/org/apache/commons/lang3/ObjectUtils.java
b/src/main/java/org/apache/commons/lang3/ObjectUtils.java
index 3b7ec158d..d07feb2a4 100644
--- a/src/main/java/org/apache/commons/lang3/ObjectUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ObjectUtils.java
@@ -558,7 +558,7 @@ public static <T> T defaultIfNull(final T object, final T
defaultValue) {
* @param object1 the first object, may be {@code null}.
* @param object2 the second object, may be {@code null}.
* @return {@code true} if the values of both objects are the same.
- * @deprecated this method has been replaced by {@code
java.util.Objects.equals(Object, Object)} in Java 7 and will
+ * @deprecated Replaced by {@code java.util.Objects.equals(Object,
Object)} in Java 7 and will
* be removed from future releases.
*/
@Deprecated
@@ -706,7 +706,7 @@ public static <T> T getIfNull(final T object, final T
defaultValue) {
* @param obj the object to obtain the hash code of, may be {@code null}.
* @return the hash code of the object, or zero if null.
* @since 2.1
- * @deprecated this method has been replaced by {@code
java.util.Objects.hashCode(Object)} in Java 7 and will be removed in future
releases.
+ * @deprecated Replaced by {@code java.util.Objects.hashCode(Object)} in
Java 7 and will be removed in future releases.
*/
@Deprecated
public static int hashCode(final Object obj) {
@@ -747,7 +747,7 @@ public static String hashCodeHex(final Object object) {
* @param objects the objects to obtain the hash code of, may be {@code
null}.
* @return the hash code of the objects, or zero if null.
* @since 3.0
- * @deprecated this method has been replaced by {@code
java.util.Objects.hash(Object...)} in Java 7 and will be removed in future
releases.
+ * @deprecated Replaced by {@code java.util.Objects.hash(Object...)} in
Java 7 and will be removed in future releases.
*/
@Deprecated
public static int hashCodeMulti(final Object... objects) {
@@ -1257,7 +1257,7 @@ public static String toString(final Object obj) {
* @see StringUtils#defaultString(String,String)
* @see String#valueOf(Object)
* @since 2.0
- * @deprecated this method has been replaced by {@code
java.util.Objects.toString(Object, String)} in Java 7 and
+ * @deprecated Replaced by {@code java.util.Objects.toString(Object,
String)} in Java 7 and
* will be removed in future releases.
*/
@Deprecated