Loading core/java/android/util/JsonReader.java +4 −2 Original line number Diff line number Diff line Loading @@ -16,13 +16,15 @@ package android.util; import libcore.internal.StringPool; import java.io.Closeable; import java.io.EOFException; import java.io.IOException; import java.io.Reader; import java.util.ArrayList; import java.util.List; import libcore.internal.StringPool; /** * Reads a JSON (<a href="http://www.ietf.org/rfc/rfc4627.txt">RFC 4627</a>) Loading Loading @@ -295,7 +297,7 @@ public final class JsonReader implements Closeable { /** * Consumes the next token from the JSON stream and asserts that it is the * end of the current array. * end of the current object. */ public void endObject() throws IOException { expect(JsonToken.END_OBJECT); Loading Loading
core/java/android/util/JsonReader.java +4 −2 Original line number Diff line number Diff line Loading @@ -16,13 +16,15 @@ package android.util; import libcore.internal.StringPool; import java.io.Closeable; import java.io.EOFException; import java.io.IOException; import java.io.Reader; import java.util.ArrayList; import java.util.List; import libcore.internal.StringPool; /** * Reads a JSON (<a href="http://www.ietf.org/rfc/rfc4627.txt">RFC 4627</a>) Loading Loading @@ -295,7 +297,7 @@ public final class JsonReader implements Closeable { /** * Consumes the next token from the JSON stream and asserts that it is the * end of the current array. * end of the current object. */ public void endObject() throws IOException { expect(JsonToken.END_OBJECT); Loading