Trivial simplification of broker initialization by removing unnecessary assignment.

This commit is contained in:
shtykh_roman
2017-03-28 10:22:53 +09:00
parent 08e70ee210
commit 203cb30a90
@@ -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();