Consumes the next token from the JSON stream and asserts that it is the end of the current array.
()
| 311 | * end of the current array. |
| 312 | */ |
| 313 | public void endObject() throws IOException { |
| 314 | expect(JsonToken.END_OBJECT); |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Consumes {@code expected}. |