Skip to content

Commit 44da05d

Browse files
committed
FQCN is not needed
1 parent 0153f0e commit 44da05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/collections4/MapUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,11 +1611,11 @@ private static void printIndent(final PrintStream out, final int indent) {
16111611
/**
16121612
* Puts all the keys and values from the specified array into the map.
16131613
* <p>
1614-
* This method is an alternative to the {@link java.util.Map#putAll(java.util.Map)} method and constructors. It
1614+
* This method is an alternative to the {@link Map#putAll(java.util.Map)} method and constructors. It
16151615
* allows you to build a map from an object array of various possible styles.
16161616
* </p>
16171617
* <p>
1618-
* If the first entry in the object array implements {@link java.util.Map.Entry} or {@link KeyValue} then the key
1618+
* If the first entry in the object array implements {@link Map.Entry} or {@link KeyValue} then the key
16191619
* and value are added from that object. If the first entry in the object array is an object array itself, then it
16201620
* is assumed that index 0 in the sub-array is the key and index 1 is the value. Otherwise, the array is treated as
16211621
* keys and values in alternate indices.

0 commit comments

Comments
 (0)