Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
Small fix to be compatible with < 1.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lvca committed Jul 28, 2014
1 parent a04af95 commit 0908583
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void extract(final Reader iReader) {
super.extract(iReader);
jsonReader = new OJSONReader(reader);
try {
first = jsonReader.nextChar();
first = (char) reader.read();
if (first == '[')
first = null;
else if (first == '{')
Expand Down

0 comments on commit 0908583

Please sign in to comment.