You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2016/06/03 02:21:17 UTC

[18/19] accumulo git commit: ACCUMULO-2493 (javadoc) fix warning

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/master
Commit: 68576ad59facdf4d24a32a47d3961c332360438a
Parents: b517cc0
Author: Christopher Tubbs <ct...@apache.org>
Authored: Thu Jun 2 21:57:15 2016 -0400
Committer: Christopher Tubbs <ct...@apache.org>
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}.<br>
+   * Preferably, use {@link DefaultFormatter#formatEntry(java.util.Map.Entry, org.apache.accumulo.core.util.format.FormatterConfig)}
    */
   public static String formatEntry(Entry<Key,Value> entry, boolean showTimestamps) {
     DateFormat timestampFormat = null;