File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
msgpack-core/src/test/java/org/msgpack/core/example Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1818import org .msgpack .core .MessageFormat ;
1919import org .msgpack .core .MessagePack ;
2020import org .msgpack .core .MessagePack .PackerConfig ;
21+ import org .msgpack .core .MessagePack .UnpackerConfig ;
2122import org .msgpack .core .MessagePacker ;
2223import org .msgpack .core .MessageUnpacker ;
2324import org .msgpack .value .ArrayValue ;
@@ -255,7 +256,7 @@ public static void configuration()
255256 packer .close ();
256257
257258 // Unpack data
258- MessagePack . UnpackerConfig unpackerConfig = new MessagePack . UnpackerConfig ();
259+ UnpackerConfig unpackerConfig = new UnpackerConfig ();
259260 unpackerConfig .stringDecoderBufferSize = 16 * 1024 ; // If your data contains many large strings (the default is 8k)
260261
261262 byte [] packedData = out .toByteArray ();
You can’t perform that action at this time.
0 commit comments