fix javadoc warnings related to java.util.Map.Entry

This commit is contained in:
pascalschumacher 2017-09-16 10:43:48 +02:00
parent e736f41062
commit b75d948dab
2 changed files with 3 additions and 3 deletions

View File

@ -298,7 +298,7 @@ public interface MultiValuedMap<K, V> {
* Changes to the returned map or the collections that serve as its values * 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 * 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 * 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 * @return a map view of the mappings in this multi-valued map
*/ */

View File

@ -260,7 +260,7 @@ abstract class AbstractPatriciaTrie<K, V> extends AbstractBitwiseTrie<K, V> {
} }
/** /**
* 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. * metric to the given key. This is NOT lexicographic closeness.
* For example, given the keys: * For example, given the keys:
* *
@ -275,7 +275,7 @@ abstract class AbstractPatriciaTrie<K, V> extends AbstractBitwiseTrie<K, V> {
* than the XOR distance between D &amp; H. * than the XOR distance between D &amp; H.
* *
* @param key the key to use in the search * @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 * to the provided key
*/ */
public Map.Entry<K, V> select(final K key) { public Map.Entry<K, V> select(final K key) {