We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9140ee3 commit ed27ed4Copy full SHA for ed27ed4
src/main/java/com/fasterxml/jackson/core/JsonStreamContext.java
@@ -53,6 +53,14 @@ protected JsonStreamContext(JsonStreamContext base) {
53
_index = base._index;
54
}
55
56
+ /**
57
+ * @since 2.9
58
+ */
59
+ protected JsonStreamContext(int type, int index) {
60
+ _type = type;
61
+ _index = index;
62
+ }
63
+
64
/*
65
/**********************************************************
66
/* Public API, accessors
0 commit comments