Skip to content

Commit

Permalink
Changed the Json.smart parser to be Json.simple compatible.
Browse files Browse the repository at this point in the history
  • Loading branch information
alt236 committed Jan 7, 2013
1 parent 96b0dd7 commit 1422568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/martinadamek/jsonandroid/SmartJson.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public List<Map> parsePublicTimeline(InputStream inputStream) {

List<Map> result = new ArrayList<Map>();

JSONParser p = new JSONParser(JSONParser.MODE_PERMISSIVE);
JSONParser p = new JSONParser(JSONParser.MODE_JSON_SIMPLE);

try {
Map map;
Expand Down

0 comments on commit 1422568

Please sign in to comment.