public boolean equals()

in src/main/java/org/apache/nifi/components/PropertyDependency.java [80:92]


    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        final PropertyDependency that = (PropertyDependency) o;
        return Objects.equals(getPropertyName(), that.getPropertyName())
                && Objects.equals(getDependentValues(), that.getDependentValues());
    }