This commit is contained in:
Redkale
2017-06-24 10:09:26 +08:00
parent 922697eb4d
commit f254b48693

View File

@@ -253,6 +253,7 @@ public class JsonByteBufferReader extends JsonReader {
throw new ConvertException("illegal escape(" + c + ") (position = " + this.position + ")");
}
} else if (ch == ',' || ch == ']' || ch == '}' || ch <= ' ' || ch == ':') { // ch <= ' ' 包含 0
this.currentChar = ch;
break;
} else {
sb.append(ch);