public int hashCode()

in src/main/java/org/apache/sling/i18n/impl/LocatorPaths.java [48:55]


    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + (int) (forBundleId ^ (forBundleId >>> 32));
        result = prime * result + ((path == null) ? 0 : path.hashCode());
        result = prime * result + traverseDepth;
        return result;
    }