File tree 1 file changed +4
-2
lines changed
src/main/java/com/fasterxml/jackson/databind
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2304,7 +2304,8 @@ protected DefaultSerializerProvider _serializerProvider(SerializationConfig conf
2304
2304
GeneratorSettings .empty ());
2305
2305
}
2306
2306
2307
- protected DefaultSerializerProvider _serializerProvider () {
2307
+ // NOTE: only public to allow for testing
2308
+ public DefaultSerializerProvider _serializerProvider () {
2308
2309
// 03-Oct-2017, tatu: Should be ok to pass "empty" generator settings...
2309
2310
return _serializationContexts .createContext (serializationConfig (),
2310
2311
GeneratorSettings .empty ());
@@ -2474,7 +2475,8 @@ protected DefaultDeserializationContext _deserializationContext(JsonParser p) {
2474
2475
.assignParser (p );
2475
2476
}
2476
2477
2477
- protected DefaultDeserializationContext _deserializationContext () {
2478
+ // NOTE: only public to allow for testing
2479
+ public DefaultDeserializationContext _deserializationContext () {
2478
2480
return _deserializationContexts .createContext (deserializationConfig (),
2479
2481
/* FormatSchema */ null , _injectableValues );
2480
2482
}
You can’t perform that action at this time.
0 commit comments