Skip to content

Commit 3c1f940

Browse files
authored
use _nullSafeUpdateToken( (#4601)
1 parent c899752 commit 3c1f940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fasterxml/jackson/databind/node/TreeTraversingParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void close() throws IOException
105105
@Override
106106
public JsonToken nextToken() throws IOException
107107
{
108-
_updateToken(_nodeCursor.nextToken());
108+
_nullSafeUpdateToken(_nodeCursor.nextToken());
109109
if (_currToken == null) {
110110
_closed = true; // if not already set
111111
return null;

0 commit comments

Comments
 (0)