Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2015 ForgeRock AS.
* Portions copyright 2020-2026 3A Systems LLC.
*/
package org.forgerock.selfservice.core.config;

Expand Down Expand Up @@ -79,7 +80,7 @@ protected Object _deserializeTypedUsingDefaultImpl(JsonParser jsonParser,
// ensure the type we found is assignable to the base type requested by deserialization;
// typically this is the interface or base class
if (_baseType != null && _baseType.getClass() == type.getClass()) {
type = _baseType.forcedNarrowBy(type.getRawClass());
type = context.getTypeFactory().constructSpecializedType(_baseType, type.getRawClass());
}
// find an appropriate deserializer for this type and deserialize
JsonDeserializer<Object> deser = context.findContextualValueDeserializer(type, _property);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
<!-- this property makes sure NetBeans 6.8+ picks up some formatting rules from checkstyle -->
<netbeans.checkstyle.format>true</netbeans.checkstyle.format>

<jackson.version>2.15.4</jackson.version>
<jackson.version>2.18.6</jackson.version>
<slf4j.version>2.0.17</slf4j.version>
<swagger.version>1.6.11</swagger.version>
<rhino.version>1.7.15.1</rhino.version>
Expand Down