Fix minor Javadoc error in JacksonDeserializer (#505)

missing `#` in @link tag
This commit is contained in:
Brian Demers 2019-10-01 12:00:56 -04:00 committed by GitHub
parent 7090bf39c3
commit a236656c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class JacksonDeserializer<T> implements Deserializer<T> {
* <p>
* If you would like to use your own {@code ObjectMapper} instance that also supports custom types for
* JWT {@code Claims}, you will need to first customize your {@code ObjectMapper} instance by registering
* your custom types and then use the {@link JacksonDeserializer(ObjectMapper)} constructor instead.
* your custom types and then use the {@link #JacksonDeserializer(ObjectMapper)} constructor instead.
*
* @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type
*/