public boolean equals()

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


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