public boolean equals()

in src/main/java/org/apache/sling/installer/factories/configuration/impl/SortedDictionary.java [79:85]


    public boolean equals(Object obj) {
        if (this == obj) return true;
        if (obj == null) return false;
        if (getClass() != obj.getClass()) return false;
        SortedDictionary other = (SortedDictionary) obj;
        return Objects.equals(delegate, other.delegate);
    }