in src/main/java/org/apache/sling/i18n/impl/LocatorPaths.java [56:74]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
LocatorPaths other = (LocatorPaths) obj;
if (forBundleId != other.forBundleId)
return false;
if (path == null) {
if (other.path != null)
return false;
} else if (!path.equals(other.path))
return false;
if (traverseDepth != other.traverseDepth)
return false;
return true;
}