mirror of
https://github.com/apache/rocketmq.git
synced 2026-09-01 15:47:01 +08:00
Trivial simplification of broker initialization by removing unnecessary assignment.
This commit is contained in:
@@ -188,9 +188,7 @@ public class BrokerController {
|
||||
}
|
||||
|
||||
public boolean initialize() throws CloneNotSupportedException {
|
||||
boolean result = true;
|
||||
|
||||
result = result && this.topicConfigManager.load();
|
||||
boolean result = this.topicConfigManager.load();
|
||||
|
||||
result = result && this.consumerOffsetManager.load();
|
||||
result = result && this.subscriptionGroupManager.load();
|
||||
|
||||
Reference in New Issue
Block a user