Repository: accumulo Updated Branches: refs/heads/master 190f572b8 -> 628fbaf0d
ACCUMULO-4501 Remove javadoc warning Remove javadoc warning and fix javadoc linking by explicitly prefacing the linked method with the inner-interface which contains that method. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/628fbaf0 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/628fbaf0 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/628fbaf0 Branch: refs/heads/master Commit: 628fbaf0d7a02d465e4924e5696f2a9f60054112 Parents: 190f572 Author: Christopher Tubbs <[email protected]> Authored: Wed May 24 23:46:41 2017 -0400 Committer: Christopher Tubbs <[email protected]> Committed: Wed May 24 23:46:41 2017 -0400 ---------------------------------------------------------------------- .../org/apache/accumulo/core/client/summary/Summarizer.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/628fbaf0/core/src/main/java/org/apache/accumulo/core/client/summary/Summarizer.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/client/summary/Summarizer.java b/core/src/main/java/org/apache/accumulo/core/client/summary/Summarizer.java index 0850818..f34c18e 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/summary/Summarizer.java +++ b/core/src/main/java/org/apache/accumulo/core/client/summary/Summarizer.java @@ -171,7 +171,8 @@ public interface Summarizer { /** * When Accumulo calls methods in this interface, it will call {@link #accept(Key, Value)} zero or more times and then call - * {@link #summarize(StatisticConsumer)} once. After calling {@link #summarize(StatisticConsumer)}, it will not use the collector again. + * {@link Collector#summarize(Summarizer.StatisticConsumer)} once. After calling {@link Collector#summarize(Summarizer.StatisticConsumer)}, it will not use + * the collector again. * * @since 2.0.0 */ @@ -199,7 +200,7 @@ public interface Summarizer { } /** - * A Combiner is used to merge statistics emitted from {@link Collector#summarize(StatisticConsumer)} and from previous invocations of itself. + * A Combiner is used to merge statistics emitted from {@link Collector#summarize(Summarizer.StatisticConsumer)} and from previous invocations of itself. * * @since 2.0.0 */ @@ -209,7 +210,7 @@ public interface Summarizer { * calls to this method. * * <p> - * If first map is too large after this call, then it may not be stored. See the comment on {@link Collector#summarize(StatisticConsumer)} + * If first map is too large after this call, then it may not be stored. See the comment on {@link Collector#summarize(Summarizer.StatisticConsumer)} */ public void merge(Map<String,Long> statistics1, Map<String,Long> statistics2); }
