public boolean equals()

in src/main/java/org/apache/sling/jcr/webdav/impl/helper/SlingResourceLocator.java [196:205]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (obj instanceof SlingResourceLocator) {
            SlingResourceLocator other = (SlingResourceLocator) obj;
            return hashCode() == other.hashCode();
        }
        return false;
    }