HBASE-15876 Remove doBulkLoad(Path hfofDir, final HTable table) though it has not been through a full deprecation cycle

This commit is contained in:
stack 2016-05-23 09:07:28 -07:00
parent 34ca6f5069
commit 04ef799dd0

View File

@ -313,8 +313,12 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
* of a job using HFileOutputFormat * of a job using HFileOutputFormat
* @param table the table to load into * @param table the table to load into
* @throws TableNotFoundException if table does not yet exist * @throws TableNotFoundException if table does not yet exist
* @deprecated since hbase-1.3.0, hbase-1.2.2, and hbase-1.1.6; replaced
* by {@link #doBulkLoad(Path, Admin, Table, RegionLocator)}.
* @see HBASE-15876
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
@Deprecated
public void doBulkLoad(Path hfofDir, final HTable table) public void doBulkLoad(Path hfofDir, final HTable table)
throws TableNotFoundException, IOException throws TableNotFoundException, IOException
{ {