File tree 2 files changed +0
-8
lines changed
main/java/tools/jackson/databind/node
test/java/tools/jackson/databind/node
2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -293,16 +293,9 @@ public Collection<String> propertyNames() {
293
293
return _children .keySet ();
294
294
}
295
295
296
- @ Override
297
- public Spliterator <String > propertyNameSpliterator () {
298
- return _children .keySet ().spliterator ();
299
- }
300
-
301
296
/**
302
297
* Method to use for accessing all properties (with both names
303
298
* and values) of this JSON Object.
304
- *
305
- * @since 2.15
306
299
*/
307
300
@ Override
308
301
public Set <Map .Entry <String , JsonNode >> properties () {
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ public void testDirectCreation() throws Exception
38
38
assertFalse (n .values ().iterator ().hasNext ());
39
39
assertEquals (0 , n .valueSpliterator ().estimateSize ());
40
40
assertTrue (n .propertyNames ().isEmpty ());
41
- assertNotNull (n .propertyNameSpliterator ());
42
41
assertTrue (n .isEmpty ());
43
42
TextNode text = TextNode .valueOf ("x" );
44
43
n .add (text );
You can’t perform that action at this time.
0 commit comments