public boolean equals()

in src/main/java/org/apache/maven/plugins/dependency/exclusion/Coordinates.java [105:116]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Coordinates that = (Coordinates) o;
        return Objects.equals(groupId, that.groupId)
                && Objects.equals(artifactId, that.artifactId)
                && Objects.equals(location, that.location);
    }