o.put("id", _id);
o.put("result", _result);
if (_fixUps != null && _fixUps.size() > 0) {
JSONArray fixups = new JSONArray();
for (Iterator i = _fixUps.iterator(); i.hasNext();) {
FixUp fixup = (FixUp) i.next();
fixups.put(fixup.toJSONArray());
}
o.put("fixups", fixups);
}
} else if (_errorCode == CODE_REMOTE_EXCEPTION) {
o.put("id", _id);