Skip to content

Commit

Permalink
rl modification
Browse files Browse the repository at this point in the history
  • Loading branch information
tuslatom committed Mar 6, 2016
1 parent 00adcf8 commit 116dfb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions gdx/src/com/badlogic/gdx/utils/JsonReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ public JsonValue parse (char[] data, int offset, int length) {

try {

// line 3 "JsonReader.java"
// line 97 "JsonReader.java"
{
cs = json_start;
top = 0;
}

// line 8 "JsonReader.java"
// line 103 "JsonReader.java"
{
int _klen;
int _trans = 0;
Expand Down Expand Up @@ -421,7 +421,7 @@ else if (data[p] > _json_trans_keys[_mid + 1])
p--;
}
break;
// line 313 "JsonReader.java"
// line 408 "JsonReader.java"
}
}
}
Expand Down Expand Up @@ -518,7 +518,7 @@ else if (data[p] > _json_trans_keys[_mid + 1])
s = p;
}
break;
// line 411 "JsonReader.java"
// line 506 "JsonReader.java"
}
}
}
Expand Down Expand Up @@ -560,7 +560,7 @@ else if (data[p] > _json_trans_keys[_mid + 1])
return root;
}

// line 421 "JsonReader.java"
// line 548 "JsonReader.java"
private static byte[] init__json_actions_0 () {
return new byte[] {0, 1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 2, 0, 7, 2, 0, 8, 2, 1, 3, 2, 1, 5};
}
Expand Down
2 changes: 1 addition & 1 deletion gdx/src/com/badlogic/gdx/utils/JsonReader.rl
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public class JsonReader implements BaseJsonReader {
}
}
p--;
while (data[p] == ' ')
while (Character.isSpace(data[p]))
p--;
}
action quotedChars {
Expand Down

0 comments on commit 116dfb9

Please sign in to comment.