File tree 2 files changed +2
-4
lines changed
src/main/java/tools/jackson/databind/node
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ Project: jackson-databind
40
40
`forEachEntry()`
41
41
#4867 : Add `Optional<JsonNode> JsonNode.asOptional()` convenience method
42
42
(fix by Joo-Hyuk K)
43
+ #4869 : Add `JsonNode.values()` to replace `elements()`
43
44
44
45
2.18.3 (not yet released)
45
46
Original file line number Diff line number Diff line change @@ -228,9 +228,6 @@ public JsonNode get(int index) {
228
228
@ Override
229
229
public JsonNode get (String fieldName ) { return null ; }
230
230
231
- /**
232
- * @since 2.19
233
- */
234
231
@ Override
235
232
public Optional <JsonNode > optional (int index ) {
236
233
return Optional .ofNullable (get (index ));
@@ -273,7 +270,7 @@ public Spliterator<JsonNode> valueSpliterator() {
273
270
return _children .spliterator ();
274
271
}
275
272
276
- @ Override // @since 2.19
273
+ @ Override
277
274
public Stream <JsonNode > valueStream () {
278
275
return _children .stream ();
279
276
}
You can’t perform that action at this time.
0 commit comments