]> git.mxchange.org Git - jfinancials-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 13 Nov 2022 21:15:04 +0000 (22:15 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 13 Nov 2022 21:15:04 +0000 (22:15 +0100)
- removed System.*.out.println() lines
- sorted import lines

src/java/org/mxchange/jfinancials/beans/business/department/action/FinancialsAdminDepartmentActionWebRequestBean.java

index 88b8e9625b1dd22d07b8f4c68a293fd9aa1ac215..6aede7db38c7438e8364f1cc77ce6288d78a6bbe 100644 (file)
@@ -38,8 +38,8 @@ import org.mxchange.jcontactsbusiness.model.branchoffice.BranchOffice;
 import org.mxchange.jcontactsbusiness.model.department.AdminDepartmentSessionBeanRemote;
 import org.mxchange.jcontactsbusiness.model.department.BusinessDepartment;
 import org.mxchange.jcontactsbusiness.model.department.Department;
-import org.mxchange.jcontactsbusiness.model.utils.DepartmentUtils;
 import org.mxchange.jcontactsbusiness.model.headquarter.Headquarter;
+import org.mxchange.jcontactsbusiness.model.utils.DepartmentUtils;
 import org.mxchange.jfinancials.beans.BaseFinancialsBean;
 import org.mxchange.jfinancials.beans.business.department.list.FinancialsDepartmentListWebViewController;
 import org.mxchange.jusercore.model.user.User;
@@ -365,9 +365,7 @@ public class FinancialsAdminDepartmentActionWebRequestBean extends BaseFinancial
                }
 
                // Copy all fields
-               System.out.println("departmentLead=" + this.getCurrentDepartment().getDepartmentLead() + " - BEFORE!");
                DepartmentUtils.copyDepartmentData(department, this.getCurrentDepartment());
-               System.out.println("departmentLead=" + this.getCurrentDepartment().getDepartmentLead() + " - AFTER!");
 
                // Initialize updated instance
                final Department updatedDepartment;