Skip to content

Commit 1ba52b8

Browse files
committed
Sync with jackson-core TreeNode changes
1 parent 6fbc98e commit 1ba52b8

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/main/java/tools/jackson/databind/node/ObjectNode.java

-7
Original file line numberDiff line numberDiff line change
@@ -293,16 +293,9 @@ public Collection<String> propertyNames() {
293293
return _children.keySet();
294294
}
295295

296-
@Override
297-
public Spliterator<String> propertyNameSpliterator() {
298-
return _children.keySet().spliterator();
299-
}
300-
301296
/**
302297
* Method to use for accessing all properties (with both names
303298
* and values) of this JSON Object.
304-
*
305-
* @since 2.15
306299
*/
307300
@Override
308301
public Set<Map.Entry<String, JsonNode>> properties() {

src/test/java/tools/jackson/databind/node/ArrayNodeTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public void testDirectCreation() throws Exception
3838
assertFalse(n.values().iterator().hasNext());
3939
assertEquals(0, n.valueSpliterator().estimateSize());
4040
assertTrue(n.propertyNames().isEmpty());
41-
assertNotNull(n.propertyNameSpliterator());
4241
assertTrue(n.isEmpty());
4342
TextNode text = TextNode.valueOf("x");
4443
n.add(text);

0 commit comments

Comments
 (0)