Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/rest_java_combine' into bugfix_c…
Browse files Browse the repository at this point in the history
…ombine
  • Loading branch information
lani009 committed Jun 2, 2021
2 parents b69e496 + 0768c87 commit 2d04211
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
Organization organizationDeptDiv;
Organization organizationHgdeptDiv;
if (request.getParameter("deptDiv").isEmpty()) {
if (request.getParameter("deptDiv")==null && request.getParameter("deptDiv").isEmpty()) {
organizationDeptDiv = new DeptDiv(null, null);
} else {
Expand All @@ -37,7 +37,7 @@
}
if (request.getParameter("govofcDiv").isEmpty()) {
if (request.getParameter("govofcDiv")==null && request.getParameter("govofcDiv").isEmpty()) {
organizationGovofcDiv = new GovofcDiv(null, null);
} else {
Expand All @@ -46,14 +46,14 @@
}
if (request.getParameter("hgdeptDiv").isEmpty()) {
if (request.getParameter("hgdeptDiv")==null && request.getParameter("hgdeptDiv").isEmpty()) {
organizationHgdeptDiv = new HgdeptDiv(null, null);
} else {
hgdeptDiv = request.getParameter("hgdeptDiv");
organizationHgdeptDiv = new HgdeptDiv(null, hgdeptDiv);
}
if (request.getParameter("dept").isEmpty()) {
if (request.getParameter("dept")==null && request.getParameter("dept").isEmpty()) {
organizationDept = new Dept(null, null);
} else {
dept = request.getParameter("dept");
Expand Down

0 comments on commit 2d04211

Please sign in to comment.