From b75d948dab0b588f3522ae0bcfeaad75a551d98a Mon Sep 17 00:00:00 2001 From: pascalschumacher Date: Sat, 16 Sep 2017 10:43:48 +0200 Subject: [PATCH] fix javadoc warnings related to java.util.Map.Entry --- .../java/org/apache/commons/collections4/MultiValuedMap.java | 2 +- .../commons/collections4/trie/AbstractPatriciaTrie.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java index cefe4416b..0cb3cf7d5 100644 --- a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java +++ b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java @@ -298,7 +298,7 @@ public interface MultiValuedMap { * Changes to the returned map or the collections that serve as its values * will update the underlying multi-valued map, and vice versa. The map does * not support {@code put} or {@code putAll}, nor do its entries support - * {@link Map.Entry#setValue setValue}. + * {@link java.util.Map.Entry#setValue(Object) setValue}. * * @return a map view of the mappings in this multi-valued map */ diff --git a/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java b/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java index 65b9809be..8508a9186 100644 --- a/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java +++ b/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java @@ -260,7 +260,7 @@ abstract class AbstractPatriciaTrie extends AbstractBitwiseTrie { } /** - * Returns the {@link Entry} whose key is closest in a bitwise XOR + * Returns the {@link java.util.Map.Entry} whose key is closest in a bitwise XOR * metric to the given key. This is NOT lexicographic closeness. * For example, given the keys: * @@ -275,7 +275,7 @@ abstract class AbstractPatriciaTrie extends AbstractBitwiseTrie { * than the XOR distance between D & H. * * @param key the key to use in the search - * @return the {@link Entry} whose key is closest in a bitwise XOR metric + * @return the {@link java.util.Map.Entry} whose key is closest in a bitwise XOR metric * to the provided key */ public Map.Entry select(final K key) {