public boolean equals()

in src/main/java/org/apache/sling/cli/impl/nexus/Artifact.java [111:120]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof Artifact) {
            Artifact other = (Artifact) obj;
            return Objects.equals(repositoryRelativePath, other.repositoryRelativePath);
        }
        return false;
    }