HBASE-1860 Change HTablePool#createHTable from private to protected
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@817950 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41558cf59d
commit
e14fa43bbc
|
@ -73,6 +73,7 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-1833 hfile.main fixes
|
||||
HBASE-1684 Backup (Export/Import) contrib tool for 0.20
|
||||
HBASE-1854 Remove the Region Historian
|
||||
HBASE-1860 Change HTablePool#createHTable from private to protected
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ public class HTablePool {
|
|||
}
|
||||
}
|
||||
|
||||
private HTableInterface createHTable(String tableName) {
|
||||
protected HTableInterface createHTable(String tableName) {
|
||||
return this.tableFactory.createHTableInterface(config, Bytes.toBytes(tableName));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue