Skip to content

Commit

Permalink
修复一个BUG
Browse files Browse the repository at this point in the history
Issue #205
  • Loading branch information
juqkai committed May 3, 2012
1 parent 7e8e17c commit 5b02244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/nutz/json/JsonConvert.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private Object injectMap(Object obj, int i) {
private void injectList(List<Object> list, int i) {
int index = 0;
if(arrayIndex.size() > arrayItem){
arrayIndex.get(arrayItem ++);
index = arrayIndex.get(arrayItem ++);
}
if(i == keys.length - 1){
list.set(index, val);
Expand Down

0 comments on commit 5b02244

Please sign in to comment.