From 48c1e7aff357d56badd01fe5e67036a223110e03 Mon Sep 17 00:00:00 2001 From: Jonathan Hsieh Date: Tue, 13 Aug 2013 21:01:51 +0000 Subject: [PATCH] HBASE-9205 fix javadoc violations git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1513651 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/hadoop/hbase/client/Increment.java | 4 ++-- .../hadoop/hbase/coprocessor/AggregateImplementation.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Increment.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Increment.java index d480e1c9f92..d60a2ff25c0 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Increment.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Increment.java @@ -166,8 +166,8 @@ public class Increment extends Mutation implements Comparable { } /** - * Before 0.95, when you called {@link Increment#getFamilyMap()}}, you got back - * a map of families to a list of Longs. Now, {@link #getFamilyMap()} returns + * Before 0.95, when you called Increment#getFamilyMap(), you got back + * a map of families to a list of Longs. Now, {@link #getFamilyCellMap()} returns * families by list of Cells. This method has been added so you can have the * old behavior. * @return Map of families to a Map of qualifers and their Long increments. diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/AggregateImplementation.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/AggregateImplementation.java index 6ba2aefbfdf..04fdc96d60f 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/AggregateImplementation.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/AggregateImplementation.java @@ -284,7 +284,7 @@ extends AggregateService implements CoprocessorService, Coprocessor { * entire column family will be returned. *

* The average is computed in - * {@link AggregationClient#avg(byte[], ColumnInterpreter, Scan)} by + * AggregationClient#avg(byte[], ColumnInterpreter, Scan) by * processing results from all regions, so its "ok" to pass sum and a Long * type. */