Skip to content

Commit ed27ed4

Browse files
committed
...
1 parent 9140ee3 commit ed27ed4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/com/fasterxml/jackson/core/JsonStreamContext.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ protected JsonStreamContext(JsonStreamContext base) {
5353
_index = base._index;
5454
}
5555

56+
/**
57+
* @since 2.9
58+
*/
59+
protected JsonStreamContext(int type, int index) {
60+
_type = type;
61+
_index = index;
62+
}
63+
5664
/*
5765
/**********************************************************
5866
/* Public API, accessors

0 commit comments

Comments
 (0)