We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59a655 commit b915cb8Copy full SHA for b915cb8
ion/src/main/java/com/fasterxml/jackson/dataformat/ion/polymorphism/IonAnnotationTypeResolverBuilder.java
@@ -128,4 +128,13 @@ public IonAnnotationTypeResolverBuilder withDefaultImpl(Class<?> newDefaultImpl)
128
}
129
return new IonAnnotationTypeResolverBuilder(this, defaultImpl);
130
131
+
132
+ @Override // since 2.16, modified from jackson-databind/StdTypeResolverBuilder
133
+ public IonAnnotationTypeResolverBuilder withSettings(JsonTypeInfo.Value settings)
134
+ {
135
+ // We don't have most of relevant things, just default implementation so:
136
+ defaultImpl = settings.getDefaultImpl();
137
+ typeIdVisible = settings.getIdVisible();
138
+ return this;
139
+ }
140
0 commit comments