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 9D7A7200B0F for ; Fri, 3 Jun 2016 04:21:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9C343160A51; Fri, 3 Jun 2016 02:21: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 41335160A5A for ; Fri, 3 Jun 2016 04:21:02 +0200 (CEST) Received: (qmail 3054 invoked by uid 500); 3 Jun 2016 02:21:01 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 2578 invoked by uid 99); 3 Jun 2016 02:21: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; Fri, 03 Jun 2016 02:21:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0C557E97D2; Fri, 3 Jun 2016 02:21:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Fri, 03 Jun 2016 02:21:16 -0000 Message-Id: <5565f872cb6544cf83db7e4ca1f2fca3@git.apache.org> In-Reply-To: <9b91425479ab4bc1a55e58180363977d@git.apache.org> References: <9b91425479ab4bc1a55e58180363977d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [17/19] accumulo git commit: ACCUMULO-2493 (javadoc) fix warning archived-at: Fri, 03 Jun 2016 02:21:03 -0000 ACCUMULO-2493 (javadoc) fix warning Fixes a warning on some versions of javadoc which cannot find a linked method without explicit full parameter types. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/68576ad5 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/68576ad5 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/68576ad5 Branch: refs/heads/1.8 Commit: 68576ad59facdf4d24a32a47d3961c332360438a Parents: b517cc0 Author: Christopher Tubbs Authored: Thu Jun 2 21:57:15 2016 -0400 Committer: Christopher Tubbs Committed: Thu Jun 2 21:57:15 2016 -0400 ---------------------------------------------------------------------- .../org/apache/accumulo/core/util/format/DefaultFormatter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/68576ad5/core/src/main/java/org/apache/accumulo/core/util/format/DefaultFormatter.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/util/format/DefaultFormatter.java b/core/src/main/java/org/apache/accumulo/core/util/format/DefaultFormatter.java index 5517b78..b5df632 100644 --- a/core/src/main/java/org/apache/accumulo/core/util/format/DefaultFormatter.java +++ b/core/src/main/java/org/apache/accumulo/core/util/format/DefaultFormatter.java @@ -65,8 +65,8 @@ public class DefaultFormatter implements Formatter { } /** - * if showTimestamps, will use {@link org.apache.accumulo.core.util.format.FormatterConfig.DefaultDateFormat}. Preferably, use - * {@link #formatEntry(Entry, FormatterConfig)} + * if showTimestamps, will use {@link FormatterConfig.DefaultDateFormat}.
+ * Preferably, use {@link DefaultFormatter#formatEntry(java.util.Map.Entry, org.apache.accumulo.core.util.format.FormatterConfig)} */ public static String formatEntry(Entry entry, boolean showTimestamps) { DateFormat timestampFormat = null;