We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a40454f + 8d9212b commit 61d341dCopy full SHA for 61d341d
msgpack-jackson/README.md
@@ -32,10 +32,10 @@ dependencies {
32
33
## Usage
34
35
-Only thing you need to do is to instantiate MessagePackFormatFactory and pass it to the constructor of ObjectMapper.
+Only thing you need to do is to instantiate MessagePackFactory and pass it to the constructor of ObjectMapper.
36
37
```
38
- ObjectMapper objectMapper = new ObjectMapper(new MessagePackFormatFactory());
+ ObjectMapper objectMapper = new ObjectMapper(new MessagePackFactory());
39
ExamplePojo orig = new ExamplePojo("komamitsu");
40
byte[] bytes = objectMapper.writeValueAsBytes(orig);
41
ExamplePojo value = objectMapper.readValue(bytes, ExamplePojo.class);
0 commit comments