}
private void processRetryEditing0(String token, Worksheet sheet, int row, int col, Object value, String editingType) {
try {
processCancelEditing0(token, sheet, row, col, true, editingType);
JSONObject result = new JSONObject();
result.put("r", row);
result.put("c", col);
result.put("type", "retryedit");
result.put("val", value);
result.put("et", editingType);
smartUpdate("dataUpdateRetry", new Object[] { "", Utils.getSheetUuid(sheet), result});
} catch (RuntimeException x) {
processCancelEditing0(token, sheet, row, col, false, editingType);
throw x;
}