File tree 2 files changed +7
-4
lines changed
src/main/java/com/fasterxml/jackson/databind/introspect
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ Project: jackson-databind
42
42
#4773 : `SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS` should not apply to Maps
43
43
with uncomparable keys
44
44
(requested by @nathanukey)
45
+ #4801 : Add `JsonNodeFeature.USE_BIG_DECIMAL_FOR_FLOATS` to allow overriding
46
+ `DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS`
47
+ (fix by Joo-Hyuk K)
45
48
#4849 Not able to deserialize Enum with default typing after upgrading 2.15.4 -> 2.17.1
46
49
(reported by Kornel Zemla)
47
50
#4863 : Add basic Stream support in `JsonNode`: `valueStream()`, `propertyStream()`,
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class PotentialCreator
35
35
* Parameter definitions if (and only if) this represents a
36
36
* Property-based Creator.
37
37
*/
38
- private List <BeanPropertyDefinition > propertyDefs ;
38
+ private List <BeanPropertyDefinition > _propertyDefs ;
39
39
40
40
public PotentialCreator (AnnotatedWithParams cr ,
41
41
JsonCreator .Mode cm )
@@ -67,7 +67,7 @@ public PotentialCreator overrideMode(JsonCreator.Mode mode) {
67
67
68
68
@ SuppressWarnings ("unchecked" )
69
69
public void assignPropertyDefs (List <? extends BeanPropertyDefinition > propertyDefs ) {
70
- this . propertyDefs = (List <BeanPropertyDefinition >) propertyDefs ;
70
+ _propertyDefs = (List <BeanPropertyDefinition >) propertyDefs ;
71
71
}
72
72
73
73
public PotentialCreator introspectParamNames (MapperConfig <?> config )
@@ -214,10 +214,10 @@ public String implicitNameSimple(int ix) {
214
214
}
215
215
216
216
public BeanPropertyDefinition [] propertyDefs () {
217
- if (propertyDefs == null || propertyDefs .isEmpty ()) {
217
+ if (_propertyDefs == null || _propertyDefs .isEmpty ()) {
218
218
return new BeanPropertyDefinition [0 ];
219
219
}
220
- return propertyDefs .toArray (new BeanPropertyDefinition [propertyDefs .size ()]);
220
+ return _propertyDefs .toArray (new BeanPropertyDefinition [_propertyDefs .size ()]);
221
221
}
222
222
223
223
/*
You can’t perform that action at this time.
0 commit comments