public boolean equals()

in src/main/java/org/apache/sling/i18n/impl/JcrResourceBundleProvider.java [860:869]


        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            } else if (obj instanceof Key) {
                Key other = (Key) obj;
                return equals(this.baseName, other.baseName) && equals(this.locale, other.locale);
            }

            return false;
        }