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

This commit is contained in:
tedyu 2015-05-29 02:47:54 -07:00
parent 5646071c73
commit cca687d718
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,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");
@ -447,4 +447,4 @@ public class CreateTableProcedure
final TableName tableName) throws IOException {
env.getMasterServices().getTableDescriptors().get(tableName);
}
}
}