Skip to content

Commit

Permalink
internal: Remove dead code in MessagePacker. (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangzheng authored Jan 9, 2024
1 parent 41168e9 commit cc2ce77
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -774,10 +774,6 @@ else if (s.length() < (1 << 16)) {
position += written;
}
else {
if (written >= (1L << 32)) { // this check does nothing because (1L << 32) is larger than Integer.MAX_VALUE
// this must not happen because s.length() is less than 2^16 and (2^16) * UTF_8_MAX_CHAR_SIZE is less than 2^32
throw new IllegalArgumentException("Unexpected UTF-8 encoder state");
}
// move 2 bytes backward to expand 3-byte header region to 5 bytes
buffer.putMessageBuffer(position + 5, buffer, position + 3, written);
// write 3-byte header header
Expand Down

0 comments on commit cc2ce77

Please sign in to comment.