in src/main/java/org/apache/sling/i18n/impl/JcrResourceBundleProvider.java [766:776]
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;
}