Removed some debug printing

This commit is contained in:
Brandon Dyck 2024-09-17 20:55:09 -06:00
parent 5e9566be33
commit 9171809e2b

View File

@ -39,7 +39,6 @@ func (rr *RuneReader) ReadRune() (r rune, size int, err error) {
return 0, 0, io.EOF return 0, 0, io.EOF
} }
s = s[:n] s = s[:n]
fmt.Println("read bytes:", s)
r, size = utf8.DecodeRune(s) r, size = utf8.DecodeRune(s)
rr.cursor = rr.cursor.At(rr.cursor.Pos() + uint64(size)) rr.cursor = rr.cursor.At(rr.cursor.Pos() + uint64(size))
return r, size, nil return r, size, nil