public boolean equals()

in src/main/java/org/apache/sling/jcr/base/internal/AllowListFragment.java [97:107]


    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof AllowListFragment)) {
            return false;
        }
        final AllowListFragment that = (AllowListFragment) o;
        return name.equals(that.name)
                && bundles.equals(that.bundles);
    }