Skip to content

Commit

Permalink
Merge pull request protostuff#288 from mirlord/readme-282
Browse files Browse the repository at this point in the history
Readme: fix code snippet syntax
  • Loading branch information
dyu authored Aug 9, 2020
2 parents 8cf014b + 51f4ad7 commit 1acb072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ If you are to purely use this to replace java serialization (no compatibility wi
You can also customize it programmatically:
```java
static final DefaultIdStrategy STRATEGY = new DefaultIdStrategy(IdStrategy.DEFAULT_FLAGS
| IdStrategy.PRESERVE_NULL_ELEMENTS,
| IdStrategy.MORPH_COLLECTION_INTERFACES,
| IdStrategy.MORPH_MAP_INTERFACES,
| IdStrategy.PRESERVE_NULL_ELEMENTS
| IdStrategy.MORPH_COLLECTION_INTERFACES
| IdStrategy.MORPH_MAP_INTERFACES
| IdStrategy.MORPH_NON_FINAL_POJOS);
```

Expand Down

0 comments on commit 1acb072

Please sign in to comment.