HBASE-9900. Fix unintended byte[].toString in AccessController

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1539882 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Kyle Purtell 2013-11-08 00:36:28 +00:00
parent d6ab53ce19
commit 60976c646d
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ public class TableAuthManager {
}
public void removeNamespace(byte[] ns) {
nsCache.remove(ns);
nsCache.remove(Bytes.toString(ns));
}
public void removeTable(TableName table) {