Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2D92A200CE7 for ; Sat, 16 Sep 2017 10:44:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2B93C1609D5; Sat, 16 Sep 2017 08:44:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 730131609D4 for ; Sat, 16 Sep 2017 10:44:02 +0200 (CEST) Received: (qmail 47298 invoked by uid 500); 16 Sep 2017 08:44:01 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 47287 invoked by uid 99); 16 Sep 2017 08:44:01 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Sep 2017 08:44:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 52A5AF5561; Sat, 16 Sep 2017 08:44:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: commits@commons.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: commons-collections git commit: fix javadoc warnings related to java.util.Map.Entry Date: Sat, 16 Sep 2017 08:44:01 +0000 (UTC) archived-at: Sat, 16 Sep 2017 08:44:03 -0000 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 Authored: Sat Sep 16 10:43:48 2017 +0200 Committer: pascalschumacher 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 { * 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 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) {