in webindex/modules/core/src/main/java/webindex/core/models/URL.java [284:291]
public boolean equals(Object o) {
if (o instanceof URL) {
URL other = (URL) o;
return domain.equals(other.domain) && host.equals(other.host) && path.equals(other.path)
&& port == other.port && secure == other.secure;
}
return false;
}