This commit is contained in:
wentch
2015-12-30 14:34:35 +08:00
parent 6a264a4d52
commit 92732eeac5

View File

@@ -146,7 +146,7 @@ public class JsonReader implements Reader {
* *
* @return * @return
*/ */
protected final char nextGoodChar() { protected char nextGoodChar() {
char c = nextChar(); char c = nextChar();
if (c > ' ') return c; if (c > ' ') return c;
for (;;) { for (;;) {