@@ -47,7 +47,7 @@ public class StdTypeResolverBuilder
47
47
48
48
/**
49
49
* Boolean value configured through {@link JsonTypeInfo#requireTypeIdForSubtypes}.
50
- * If not {@code null}, this value overrides the global configuration of
50
+ * If this value is not {@code null}, this value overrides the global configuration of
51
51
* {@link com.fasterxml.jackson.databind.MapperFeature#REQUIRE_TYPE_ID_FOR_SUBTYPES}.
52
52
*
53
53
* @since 2.16
@@ -419,9 +419,9 @@ protected boolean allowPrimitiveTypes(MapperConfig<?> config,
419
419
420
420
/**
421
421
* Determines whether strict type ID handling should be used for this type or not.
422
- * This will return as configured by {@link JsonTypeInfo#requireTypeIdForSubtypes()}
423
- * if the value is not {@code OptBoolean.DEFAULT}.
424
- * Otherwise,This will be enabled when either the type has type resolver annotations or if
422
+ * This will be enabld as configured by {@link JsonTypeInfo#requireTypeIdForSubtypes()}
423
+ * unless its value is {@code OptBoolean.DEFAULT}. Otherwise,
424
+ * this will be enabled when either the type has type resolver annotations or if
425
425
* {@link com.fasterxml.jackson.databind.MapperFeature#REQUIRE_TYPE_ID_FOR_SUBTYPES}
426
426
* is enabled.
427
427
*
@@ -431,7 +431,7 @@ protected boolean allowPrimitiveTypes(MapperConfig<?> config,
431
431
* @return {@code true} if the class has type resolver annotations, or the strict
432
432
* handling feature is enabled, {@code false} otherwise.
433
433
*
434
- * @since 2.16
434
+ * @since 2.15
435
435
*/
436
436
protected boolean _strictTypeIdHandling (DeserializationConfig config , JavaType baseType ) {
437
437
// [databind#3877]: allow configuration of per-type strict type handling
0 commit comments