From 80fc18d2e1f72d312a4ab90a32d6e44c9b560493 Mon Sep 17 00:00:00 2001 From: anoopsjohn Date: Thu, 17 Dec 2015 22:47:48 +0530 Subject: [PATCH] HBASE-15000 Fix javadoc warn in LoadIncrementalHFiles. (Ashish) --- .../apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java index 5064c052aee..0e354275712 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java @@ -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 table table to which hfiles should be loaded * @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 */ - public void prepareHFileQueue(Path hfofDir, Table table, Deque queue, + public void prepareHFileQueue(Path hfilesDir, Table table, Deque queue, boolean validateHFile) throws IOException { - discoverLoadQueue(queue, hfofDir, validateHFile); + discoverLoadQueue(queue, hfilesDir, validateHFile); validateFamiliesInHFiles(table, queue); }