hollow/src/main/java/com/netflix/hollow/tools/stringifier/HollowRecordStringifier.java [84:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void stringify(Writer writer, Iterable<HollowRecord> records) throws IOException {
        writer.write("[");
        Iterator<HollowRecord> iterator = records.iterator();
        while (iterator.hasNext()) {
            stringify(writer, iterator.next());
            if (iterator.hasNext()) {
                writer.write(",");
            }
        }
        writer.write("\n]");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hollow/src/main/java/com/netflix/hollow/tools/stringifier/HollowRecordJsonStringifier.java [95:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void stringify(Writer writer, Iterable<HollowRecord> records) throws IOException {
        writer.write("[");
        Iterator<HollowRecord> iterator = records.iterator();
        while (iterator.hasNext()) {
            stringify(writer, iterator.next());
            if (iterator.hasNext()) {
                writer.write(",");
            }
        }
        writer.write("]");
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



