in src/main/java/org/apache/sling/distribution/journal/impl/discovery/TopologyView.java [126:131]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TopologyView that = (TopologyView) o;
return Objects.equals(states, that.states);
}