We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498ab6c commit 31feb4cCopy full SHA for 31feb4c
msgpack-jackson/src/main/java/org/msgpack/jackson/dataformat/MessagePackExtensionType.java
@@ -11,16 +11,16 @@
11
@JsonSerialize(using = MessagePackExtensionType.Serializer.class)
12
public class MessagePackExtensionType
13
{
14
- private final int type;
+ private final byte type;
15
private final byte[] data;
16
17
- public MessagePackExtensionType(int extType, byte[] extData)
+ public MessagePackExtensionType(byte extType, byte[] extData)
18
19
this.type = extType;
20
this.data = extData;
21
}
22
23
- public int getType()
+ public byte getType()
24
25
return type;
26
0 commit comments