HBASE-7705 Make the method getCurrentPoolSize of HTablePool public (cuijianwei)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1440284 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2013-01-30 05:48:21 +00:00
parent bd154b16c4
commit 023a37dd25
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ public class HTablePool implements Closeable {
this.tables.clear();
}
int getCurrentPoolSize(String tableName) {
public int getCurrentPoolSize(String tableName) {
return tables.size(tableName);
}