Minor plastic surgery: move item.delete() up a few lines.
This commit is contained in:
parent
1682808eca
commit
f369c4ca1b
1 changed files with 1 additions and 1 deletions
|
@ -185,13 +185,13 @@ public abstract class AbstractServletClient extends HttpServlet {
|
|||
item.get(),
|
||||
item.getContentType());
|
||||
}
|
||||
item.delete();
|
||||
// if multiple values exist for this name, append to _array
|
||||
if (reqtrans.get(name) != null) {
|
||||
appendFormValue(reqtrans, name, value);
|
||||
} else {
|
||||
reqtrans.set(name, value);
|
||||
}
|
||||
item.delete();
|
||||
}
|
||||
|
||||
} catch (Exception upx) {
|
||||
|
|
Loading…
Add table
Reference in a new issue