We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d328e9 commit 66ce882Copy full SHA for 66ce882
msgpack-core/src/main/java/org/msgpack/core/MessageUnpacker.java
@@ -71,8 +71,6 @@ public class MessageUnpacker
71
{
72
private static final MessageBuffer EMPTY_BUFFER = MessageBuffer.wrap(new byte[0]);
73
74
- private static final byte HEAD_BYTE_REQUIRED = (byte) 0xc1;
75
-
76
private final boolean allowReadingStringAsBinary;
77
private final boolean allowReadingBinaryAsString;
78
private final CodingErrorAction actionOnMalformedString;
@@ -82,8 +80,6 @@ public class MessageUnpacker
82
80
83
81
private MessageBufferInput in;
84
85
- private byte headByte = HEAD_BYTE_REQUIRED;
86
87
/**
88
* Points to the current buffer to read
89
*/
0 commit comments