From 44da05d45ec6ce3c54f0a96c05e82c4cad0783b2 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Sun, 15 Dec 2024 10:07:36 -0500 Subject: [PATCH] FQCN is not needed --- src/main/java/org/apache/commons/collections4/MapUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/MapUtils.java b/src/main/java/org/apache/commons/collections4/MapUtils.java index 7fbf4a9191..f9b2eb842f 100644 --- a/src/main/java/org/apache/commons/collections4/MapUtils.java +++ b/src/main/java/org/apache/commons/collections4/MapUtils.java @@ -1611,11 +1611,11 @@ private static void printIndent(final PrintStream out, final int indent) { /** * Puts all the keys and values from the specified array into the map. *

- * This method is an alternative to the {@link java.util.Map#putAll(java.util.Map)} method and constructors. It + * This method is an alternative to the {@link Map#putAll(java.util.Map)} method and constructors. It * allows you to build a map from an object array of various possible styles. *

*

- * If the first entry in the object array implements {@link java.util.Map.Entry} or {@link KeyValue} then the key + * If the first entry in the object array implements {@link Map.Entry} or {@link KeyValue} then the key * and value are added from that object. If the first entry in the object array is an object array itself, then it * is assumed that index 0 in the sub-array is the key and index 1 is the value. Otherwise, the array is treated as * keys and values in alternate indices.