in src/main/java/org/apache/sling/tooling/lc/aether/ArtifactKey.java [49:61]
public boolean equals(Object obj) {
if ( !(obj instanceof ArtifactKey) ) {
return false;
}
ArtifactKey other = (ArtifactKey) obj;
return Objects.equals(artifactId, other.artifactId)
&& Objects.equals(groupId, other.groupId)
&& Objects.equals(classifier, other.classifier)
&& Objects.equals(type, other.type);
}