in geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartRouter.java [106:116]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final StartRouter that = (StartRouter) o;
return proxyPort == that.proxyPort &&
Objects.equals(image, that.image);
}