You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/09/16 08:44:01 UTC

commons-collections git commit: fix javadoc warnings related to java.util.Map.Entry

Repository: commons-collections
Updated Branches:
  refs/heads/master e736f4106 -> b75d948da


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


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/b75d948d
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/b75d948d
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/b75d948d

Branch: refs/heads/master
Commit: b75d948dab0b588f3522ae0bcfeaad75a551d98a
Parents: e736f41
Author: pascalschumacher <pa...@gmx.net>
Authored: Sat Sep 16 10:43:48 2017 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sat Sep 16 10:43:48 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/commons/collections4/MultiValuedMap.java     | 2 +-
 .../apache/commons/collections4/trie/AbstractPatriciaTrie.java   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/b75d948d/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/collections4/MultiValuedMap.java b/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
index cefe441..0cb3cf7 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<K, V> {
      * 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
      */

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/b75d948d/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java
----------------------------------------------------------------------
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 65b9809..8508a91 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<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.
      * 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.
      *
      * @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<K, V> select(final K key) {