Skip to content

Commit 47f1267

Browse files
committed
fix for array uncomment
1 parent 173f864 commit 47f1267

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/fasterxml/jackson/core/filter/FilteringParserDelegate.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -754,9 +754,9 @@ protected final JsonToken _nextTokenWithBuffering(final TokenFilterContext buffR
754754
if (returnEnd) {
755755
return t;
756756
}
757-
// if (gotEnd) {
758-
// return null;
759-
// }
757+
if (gotEnd) {
758+
return null;
759+
}
760760
}
761761
continue main_loop;
762762
case ID_END_OBJECT:

0 commit comments

Comments
 (0)