Index: hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSWALEntry.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSWALEntry.java (revision 1594357) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSWALEntry.java (working copy) @@ -30,8 +30,7 @@ * region sequence id (we want to use this later, just before we write the WAL to ensure region * edits maintain order). The extra info added here is not 'serialized' as part of the WALEdit * hence marked 'transient' to underline this fact. It also adds mechanism so we can wait on - * the assign of the region sequence id. See {@link #setRegionSequenceId(long)} and - * {@link #getRegionSequenceId()}. + * the assign of the region sequence id. See {@link #stampRegionSequenceId()}. */ @InterfaceAudience.Private class FSWALEntry extends HLog.Entry { @@ -85,7 +84,7 @@ * Call when safe to do so: i.e. the context is such that the increment on the passed in * {@link #regionSequenceIdReference} is guaranteed aligned w/ how appends are going into the * WAL. This method works with {@link #getRegionSequenceId()}. It will block waiting on this - * method if on initialization our edit/sequence id is {@link HLogKey#NO_SEQ_NO}. + * method to be called. * @return The region edit/sequence id we set for this edit. * @see #getRegionSequenceId() */ @@ -102,4 +101,4 @@ this.latch.await(); return getKey().getLogSeqNum(); } -} \ No newline at end of file +}