public boolean equals()

in src/main/java/org/apache/sling/feature/cpconverter/shared/RepoPath.java [124:133]


    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        RepoPath other = (RepoPath) obj;
        return Objects.equals(path, other.path) && isRepositoryPath == other.isRepositoryPath;
    }