Skip to content

Commit 937f386

Browse files
committed
Update release notes
1 parent 82e85a8 commit 937f386

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

release-notes/CREDITS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,8 @@ Brad Hess (bdhess@github)
130130
Logan Widick (uhhhh2@github)
131131
* Contributed #17: Add 'JsonGenerator.writeString(Reader r, int charLength)'
132132
(2.9.0)
133+
134+
Michael Sims (MichaelSims@github)
135+
* Reported, contributed fix for #372: JsonParserSequence#skipChildren() throws exception
136+
when current delegate is TokenBuffer.Parser with "incomplete" JSON
137+
(2.9.0)

release-notes/VERSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ JSON library.
3131
#340: Making `WriterBasedJsonGenerator` non-final
3232
(requested by rfoltyns@github)
3333
#356: Improve indication of "source reference" in `JsonLocation` wrt `byte[]`,`char[]`
34+
#372: JsonParserSequence#skipChildren() throws exception when current delegate is
35+
TokenBuffer.Parser with "incomplete" JSON
36+
(contributed by Michael S)
3437

3538
2.8.8 (05-Apr-2017)
3639

src/main/java/com/fasterxml/jackson/core/json/JsonReadContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public Object getCurrentValue() {
9696
public void setCurrentValue(Object v) {
9797
_currentValue = v;
9898
}
99-
99+
100100
/*
101101
/**********************************************************
102102
/* Factory methods
@@ -110,7 +110,7 @@ public static JsonReadContext createRootContext(int lineNr, int colNr, DupDetect
110110
public static JsonReadContext createRootContext(DupDetector dups) {
111111
return new JsonReadContext(null, dups, TYPE_ROOT, 1, 0);
112112
}
113-
113+
114114
public JsonReadContext createChildArrayContext(int lineNr, int colNr) {
115115
JsonReadContext ctxt = _child;
116116
if (ctxt == null) {

0 commit comments

Comments
 (0)