HBASE-13802 Addendum fixes checkstyle warning by removing the whitespace before the right parenthesis

This commit is contained in:
tedyu 2015-05-29 02:48:54 -07:00
parent 46c9a5b339
commit 695c4790cd
1 changed files with 2 additions and 2 deletions

View File

@ -269,7 +269,7 @@ public class CreateTableProcedure
@Override
protected boolean acquireLock(final MasterProcedureEnv env) {
if (!env.isInitialized() && !getTableName().isSystemTable() ) {
if (!env.isInitialized() && !getTableName().isSystemTable()) {
return false;
}
return env.getProcedureQueue().tryAcquireTableExclusiveLock(getTableName(), "create table");
@ -463,4 +463,4 @@ public class CreateTableProcedure
final TableName tableName) throws IOException {
env.getMasterServices().getTableDescriptors().get(tableName);
}
}
}