remove superfluous debug func

This commit is contained in:
atagen 2024-12-03 14:29:47 +11:00
parent c5f8eea2c5
commit c619949618

View File

@ -50,9 +50,3 @@ let serialise t chunk =
t.pos <- t.pos + input_sz)
let create = { buf = Bytes.create 4096; pos = 0 }
let print_debug t =
print_endline
("pos is " ^ string_of_int t.pos ^ "\nsz is "
^ string_of_int (Bytes.length t.buf)
^ "\ncontents are: " ^ String.of_bytes t.buf)