Skip to content

Commit

Permalink
Update lang/java/avro/src/main/java/org/apache/avro/io/BufferedBinary…
Browse files Browse the repository at this point in the history
…Encoder.java

Co-authored-by: Martin Grigorov <[email protected]>
  • Loading branch information
belugabehr and martin-g authored Sep 14, 2024
1 parent dbf26d1 commit e3e5044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ protected void writeZero() throws IOException {
if (pos == buf.length) {
flushBuffer();
}
buf[pos++] = (byte) (0);
buf[pos++] = (byte) 0;
}

@Override
Expand Down

0 comments on commit e3e5044

Please sign in to comment.