1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 16:00:51 -07:00
This commit is contained in:
Douglas Crockford 2014-04-21 16:13:10 -07:00
parent 7ff3fa4e40
commit b7a1aee4e1
3 changed files with 14 additions and 14 deletions

View file

@ -35,7 +35,7 @@ import org.json.Kim;
* JSONzip is a compression scheme for JSON text.
*
* @author JSON.org
* @version 2013-04-18
* @version 2014-04-21
*/
public class Decompressor extends JSONzip {
@ -221,7 +221,7 @@ public class Decompressor extends JSONzip {
JSONObject jsonobject = new JSONObject();
while (true) {
if (probe) {
log("\n");
log();
}
String name = readName();
jsonobject.put(name, !bit() ? readString() : readValue());