public int hashCode()

in src/main/java/com/netflix/bdp/s3mper/metastore/FileInfo.java [90:95]


    public int hashCode() {
        int result = path != null ? path.hashCode() : 0;
        result = 31 * result + (deleted ? 1 : 0);
        result = 31 * result + (directory ? 1 : 0);
        return result;
    }