in src/main/java/org/apache/commons/configuration2/io/URLConnectionOptions.java [90:100]
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof URLConnectionOptions)) {
return false;
}
final URLConnectionOptions other = (URLConnectionOptions) obj;
return allowUserInteraction == other.allowUserInteraction && connectTimeoutMillis == other.connectTimeoutMillis
&& readTimeoutMillis == other.readTimeoutMillis && useCaches == other.useCaches;
}