HBASE-13898 AMMENDMENT Correct Javadoc errors in site

Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
Gábor Lipták 2015-06-19 21:59:52 -04:00 committed by Sean Busbey
parent 93640bb798
commit b636c6b1cd
3 changed files with 3 additions and 5 deletions

View File

@ -403,7 +403,7 @@ public class MultiByteBuffer {
/** /**
* Returns the number of elements between the current position and the * Returns the number of elements between the current position and the
* limit. </p> * limit.
* @return the remaining elements in this MBB * @return the remaining elements in this MBB
*/ */
public int remaining() { public int remaining() {
@ -1044,4 +1044,4 @@ public class MultiByteBuffer {
} }
return hash; return hash;
} }
} }

View File

@ -653,8 +653,6 @@ public interface Region extends ConfigurationObserver {
* *
* @throws IOException general io exceptions * @throws IOException general io exceptions
* because a snapshot was not properly persisted. * because a snapshot was not properly persisted.
* @throws DroppedSnapshotException Thrown when abort is required. The caller MUST catch this
* exception and MUST abort. Any further operation to the region may cause data loss.
*/ */
FlushResult flush(boolean force) throws IOException; FlushResult flush(boolean force) throws IOException;

View File

@ -269,7 +269,7 @@ public class WALKey implements SequenceId, Comparable<WALKey> {
/** /**
* Allow that the log sequence id to be set post-construction and release all waiters on assigned * Allow that the log sequence id to be set post-construction and release all waiters on assigned
* sequence number. * sequence number.
* Only public for {@link org.apache.hadoop.hbase.regionserver.wal.FSWALEntry} * Only public for org.apache.hadoop.hbase.regionserver.wal.FSWALEntry
* @param sequence * @param sequence
*/ */
@InterfaceAudience.Private @InterfaceAudience.Private