HBASE-15000 Fix javadoc warn in LoadIncrementalHFiles. (Ashish)

This commit is contained in:
anoopsjohn 2015-12-17 22:47:48 +05:30
parent cf458d3023
commit 80fc18d2e1
1 changed files with 3 additions and 2 deletions

View File

@ -425,11 +425,12 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
* @param hfilesDir directory containing list of hfiles to be loaded into the table * @param hfilesDir directory containing list of hfiles to be loaded into the table
* @param table table to which hfiles should be loaded * @param table table to which hfiles should be loaded
* @param queue queue which needs to be loaded into the table * @param queue queue which needs to be loaded into the table
* @param validateHFile if true hfiles will be validated for its format
* @throws IOException If any I/O or network error occurred * @throws IOException If any I/O or network error occurred
*/ */
public void prepareHFileQueue(Path hfofDir, Table table, Deque<LoadQueueItem> queue, public void prepareHFileQueue(Path hfilesDir, Table table, Deque<LoadQueueItem> queue,
boolean validateHFile) throws IOException { boolean validateHFile) throws IOException {
discoverLoadQueue(queue, hfofDir, validateHFile); discoverLoadQueue(queue, hfilesDir, validateHFile);
validateFamiliesInHFiles(table, queue); validateFamiliesInHFiles(table, queue);
} }