HDFS-16364. Remove unnecessary brackets in NameNodeRpcServer#L453 (#3742)
This commit is contained in:
parent
52ec65fd10
commit
0cb6c28d19
|
@ -450,7 +450,7 @@ public class NameNodeRpcServer implements NamenodeProtocols {
|
|||
|
||||
GlobalStateIdContext stateIdContext = null;
|
||||
if (enableStateContext) {
|
||||
stateIdContext = new GlobalStateIdContext((namesystem));
|
||||
stateIdContext = new GlobalStateIdContext(namesystem);
|
||||
}
|
||||
|
||||
clientRpcServer = new RPC.Builder(conf)
|
||||
|
|
Loading…
Reference in New Issue