File tree 2 files changed +5
-3
lines changed
main/java/tools/jackson/core
test/java/tools/jackson/core/util
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
package tools .jackson .core ;
7
7
8
+ import java .util .Collection ;
8
9
import java .util .Iterator ;
9
10
import java .util .Spliterator ;
10
11
import java .util .Spliterators ;
@@ -227,7 +228,7 @@ public interface TreeNode
227
228
* @return An iterator for traversing names of all properties this Object node
228
229
* has (if Object node); empty {@link Iterator} otherwise (never {@code null}).
229
230
*/
230
- Iterator <String > propertyNames ();
231
+ Collection <String > propertyNames ();
231
232
232
233
/**
233
234
* Method for accessing names of all properties for this node via a {@code Spliterator} ,
@@ -239,7 +240,7 @@ public interface TreeNode
239
240
* @since 3.0
240
241
*/
241
242
default Spliterator <String > propertyNameSpliterator () {
242
- return Spliterators . spliteratorUnknownSize ( propertyNames (), Spliterator . ORDERED );
243
+ return propertyNames (). spliterator ( );
243
244
}
244
245
245
246
/**
Original file line number Diff line number Diff line change 3
3
import java .io .*;
4
4
import java .math .BigDecimal ;
5
5
import java .math .BigInteger ;
6
+ import java .util .Collection ;
6
7
import java .util .Iterator ;
7
8
8
9
import org .junit .jupiter .api .Test ;
@@ -92,7 +93,7 @@ public TreeNode path(int index) {
92
93
}
93
94
94
95
@ Override
95
- public Iterator <String > propertyNames () {
96
+ public Collection <String > propertyNames () {
96
97
return null ;
97
98
}
98
99
You can’t perform that action at this time.
0 commit comments