hollow/src/main/java/com/netflix/hollow/core/schema/HollowMapSchema.java [116:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if(hashKey != null) {
            builder.append(" @HashKey(");
            if(hashKey.numFields() > 0) {
                builder.append(hashKey.getFieldPath(0));
                for(int i=1;i<hashKey.numFields();i++) {
                    builder.append(", ").append(hashKey.getFieldPath(i));
                }
            }
            builder.append(")");
        }

        builder.append(";");
        return builder.toString();
    }

    @Override
    public void writeTo(OutputStream os) throws IOException {
        DataOutputStream dos = new DataOutputStream(os);

        if(getHashKey() != null)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hollow/src/main/java/com/netflix/hollow/core/schema/HollowSetSchema.java [100:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if(hashKey != null) {
            builder.append(" @HashKey(");
            if(hashKey.numFields() > 0) {
                builder.append(hashKey.getFieldPath(0));
                for(int i=1;i<hashKey.numFields();i++) {
                    builder.append(", ").append(hashKey.getFieldPath(i));
                }
            }
            builder.append(")");
        }

        builder.append(";");
        return builder.toString();
    }

    @Override
    public void writeTo(OutputStream os) throws IOException {
        DataOutputStream dos = new DataOutputStream(os);

        if(getHashKey() != null)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



