Loading core/java/android/util/JsonReader.java +3 −0 Original line number Original line Diff line number Diff line Loading @@ -546,6 +546,9 @@ public final class JsonReader implements Closeable { public void skipValue() throws IOException { public void skipValue() throws IOException { skipping = true; skipping = true; try { try { if (!hasNext() || peek() == JsonToken.END_DOCUMENT) { throw new IllegalStateException("No element left to skip"); } int count = 0; int count = 0; do { do { JsonToken token = advance(); JsonToken token = advance(); Loading Loading
core/java/android/util/JsonReader.java +3 −0 Original line number Original line Diff line number Diff line Loading @@ -546,6 +546,9 @@ public final class JsonReader implements Closeable { public void skipValue() throws IOException { public void skipValue() throws IOException { skipping = true; skipping = true; try { try { if (!hasNext() || peek() == JsonToken.END_DOCUMENT) { throw new IllegalStateException("No element left to skip"); } int count = 0; int count = 0; do { do { JsonToken token = advance(); JsonToken token = advance(); Loading