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:
Michael Stack 2009-09-23 03:38:58 +00:00
parent 41558cf59d
commit e14fa43bbc
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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));
}
}