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 9b3727c commit 2a575f8Copy full SHA for 2a575f8
src/main/java/com/jsoniter/IterImplForStreaming.java
@@ -147,7 +147,8 @@ final static void skipString(JsonIterator iter) throws IOException {
147
throw iter.reportError("skipString", "incomplete string");
148
}
149
if (escaped) {
150
- iter.head = 1; // skip the first char as last char is \
+ // TODO add unit test to prove/verify bug
151
+ iter.head += 1; // skip the first char as last char is \
152
153
} else {
154
iter.head = end;
0 commit comments