HBASE-8864 Fix 2 javadoc warnings (Ted Yu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
631b20dfe3
commit
18ee009a0c
|
@ -68,7 +68,6 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
|
||||||
* @param rowArray
|
* @param rowArray
|
||||||
* @param rowOffset
|
* @param rowOffset
|
||||||
* @param rowLength
|
* @param rowLength
|
||||||
* @param ts
|
|
||||||
*/
|
*/
|
||||||
public Put(byte [] rowArray, int rowOffset, int rowLength) {
|
public Put(byte [] rowArray, int rowOffset, int rowLength) {
|
||||||
this(rowArray, rowOffset, rowLength, HConstants.LATEST_TIMESTAMP);
|
this(rowArray, rowOffset, rowLength, HConstants.LATEST_TIMESTAMP);
|
||||||
|
@ -294,4 +293,4 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
|
||||||
}
|
}
|
||||||
return filteredList;
|
return filteredList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,8 +113,7 @@ public class ReplicationSink {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replicate this array of entries directly into the local cluster using the native client.
|
* Replicate this array of entries directly into the local cluster using the native client.
|
||||||
* Like {@link #replicateEntries(org.apache.hadoop.hbase.regionserver.wal.HLog.Entry[])} only
|
* Only operates against raw protobuf type saving on a convertion from pb to pojo.
|
||||||
* operates against raw protobuf type saving on a convertion from pb to pojo.
|
|
||||||
*
|
*
|
||||||
* @param entries
|
* @param entries
|
||||||
* @param cells
|
* @param cells
|
||||||
|
|
Loading…
Reference in New Issue