csaboka commented on a change in pull request #74: URL: https://github.com/apache/johnzon/pull/74#discussion_r667306271
########## File path: johnzon-core/src/main/java/org/apache/johnzon/core/JohnzonJsonParserImpl.java ########## @@ -134,18 +140,57 @@ public void skipArray() { @Override public Stream<JsonValue> getArrayStream() { - //X TODO this implementation is very simplistic - //X I find it unintuitive what the spec intends here - //X we probably need to improve this - return getArray().stream(); + Event current = current(); + if (current != Event.START_ARRAY) { + throw new IllegalStateException(current + " doesn't support getArrayStream()"); + } + + Spliterator<JsonValue> arraySpliterator = new Spliterators.AbstractSpliterator<JsonValue>( Review comment: I've pushed some changes. Is this what you had in mind? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@johnzon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org