public boolean equals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/IdentifiableObjectSelectionImpl.java [34:49]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof IdentifiableObjectSelectionImpl)) {
            return false;
        }

        IdentifiableObjectSelectionImpl that = (IdentifiableObjectSelectionImpl) o;

        if (CollectionUtils.isEmpty(resolvesTo) && CollectionUtils.isEmpty(that.resolvesTo)) {
            return true;
        }

        return Objects.equals(resolvesTo, that.resolvesTo);
    }