Skip to content

Commit

Permalink
FQCN is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 15, 2024
1 parent 0153f0e commit 44da05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/collections4/MapUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
* <p>
* 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.
* </p>
* <p>
* 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.
Expand Down

0 comments on commit 44da05d

Please sign in to comment.