Skip to content

Commit

Permalink
HBASE-22603 Javadoc Warnings related to @link tag
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
  • Loading branch information
murtazahassan123 authored and HorizonNet committed Jul 23, 2019
1 parent a57c8a2 commit a39c428
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ public static boolean isDeleteColumnOrFamily(Cell cell) {
}

/**
* Estimate based on keyvalue's serialization format.
* Estimate based on keyvalue's serialization format.
* @param cell
* @return Estimate of the <code>cell</code> size in bytes.
* @deprecated please use estimatedSerializedSizeOf(Cell)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ boolean updateMeta(final HRegion r, long masterSystemTime) {
}

/**
* Thread to run region post open tasks. Call {@link #getException()} after
* the thread finishes to check for exceptions running
* {@link RegionServerServices#postOpenDeployTasks(HRegion)
* Thread to run region post open tasks. Call {@link #getException()} after the thread finishes
* to check for exceptions running
* {@link RegionServerServices#postOpenDeployTasks(PostOpenDeployContext)}
*/
static class PostOpenDeployTasksThread extends Thread {
private Throwable exception = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ public void setUp() throws Exception {
/**
* From here on down, we have a bunch of defines and specific CELL_GRID of Cells. The
* CELL_GRID then has a Scanner that can fake out 'block' transitions. All this elaborate
* setup is for tests that ensure we don't overread, and that the
* {@link StoreScanner#optimize(org.apache.hadoop.hbase.regionserver.querymatcher.ScanQueryMatcher.MatchCode,
* Cell)} is not overly enthusiastic.
* setup is for tests that ensure we don't overread, and that the {@link StoreScanner} is not
* overly enthusiastic.
*/
private static final byte [] ZERO = new byte [] {'0'};
private static final byte [] ZERO_POINT_ZERO = new byte [] {'0', '.', '0'};
Expand Down

0 comments on commit a39c428

Please sign in to comment.