File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -115,9 +115,7 @@ public JacksonDeserializer(ObjectMapper objectMapper) {
115
115
* @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type
116
116
* @since 0.12.4
117
117
*/
118
- //TODO: Make this public on a minor release
119
- // (cannot do that on a point release as that would violate semver)
120
- private JacksonDeserializer (ObjectMapper objectMapper , Map <String , Class <?>> claimTypeMap ) {
118
+ public JacksonDeserializer (ObjectMapper objectMapper , Map <String , Class <?>> claimTypeMap ) {
121
119
this (objectMapper );
122
120
Assert .notNull (claimTypeMap , "Claim type map cannot be null." );
123
121
// register a new Deserializer on the ObjectMapper instance:
You can’t perform that action at this time.
0 commit comments