public boolean equals()

in src/main/java/org/apache/maven/plugin/compiler/DependencyExclusion.java [39:48]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        return obj instanceof DependencyExclusion other
                && Objects.equals(groupId, other.groupId)
                && Objects.equals(artifactId, other.artifactId)
                && Objects.equals(classifier, other.classifier)
                && Objects.equals(extension, other.extension);
    }