From 26d50922d913a5cadece50aef8e70c45f921aa27 Mon Sep 17 00:00:00 2001 From: Ashish Singhi Date: Thu, 17 Dec 2015 11:35:42 +0530 Subject: [PATCH] HBASE-15000 Fix javadoc warn in LoadIncrementalHFiles --- .../org/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 a2b8b92..9ac71b9 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 @@ -452,11 +452,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); } -- 1.9.2.msysgit.0