in src/main/java/com/googlesource/gerrit/plugins/healthcheck/check/BlockedThreadsConfigurator.java [183:192]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Threshold other = (Threshold) obj;
return Objects.equals(prefix, other.prefix) && Objects.equals(value, other.value);
}