Skip to content

Commit cc54617

Browse files
committed
3 javadoc fixes
1 parent 4963374 commit cc54617

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/com/fasterxml/jackson/databind/ObjectMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2318,7 +2318,7 @@ public ObjectMapper setConstructorDetector(ConstructorDetector cd) {
23182318
/**
23192319
* Method for specifying {@link CacheProvider} instance, to provide Cache instances to be used in components downstream.
23202320
*
2321-
* @cacheProvider Cache provider for this mapper to use
2321+
* @param cacheProvider Cache provider for this mapper to use
23222322
*
23232323
* @throws IllegalArgumentException if given provider is null
23242324
*

src/main/java/com/fasterxml/jackson/databind/cfg/MapperBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ public B annotationIntrospector(AnnotationIntrospector intr) {
453453
*
454454
* @return This Builder instance to allow call chaining
455455
*
456-
* @seee ContextAttributes for details on constructing default attributes.
456+
* @see ContextAttributes for details on constructing default attributes.
457457
*/
458458
public B defaultAttributes(ContextAttributes attrs) {
459459
_mapper.setDefaultAttributes(attrs);

src/main/java/com/fasterxml/jackson/databind/module/SimpleModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* NOTE: that [de]serializers are registered as "default" [de]serializers.
2626
* As a result, they will have lower priority than the ones indicated through annotations on
2727
* both Class and property-associated annotations -- for example,
28-
* {@link com.fasterxml.jackson.databind.annotation.JsonDeserialize}.<br/>
28+
* {@link com.fasterxml.jackson.databind.annotation.JsonDeserialize}.<br>
2929
* In cases where both module-based [de]serializers and annotation-based [de]serializers are registered,
3030
* the [de]serializer specified by the annotation will take precedence.
3131
*<p>

0 commit comments

Comments
 (0)