remove println

This commit is contained in:
alex 2024-09-18 10:28:54 -04:00
parent 451242bea4
commit 23e633cc5f

View File

@ -66,8 +66,6 @@ public class SecurityConfig extends VaadinWebSecurity {
final UserDetails details = super.mapUserFromContext(ctx, username, authorities);
final Employee employee = employeeService.getDetachedEmployeeByUsername(details.getUsername());
System.out.println(">>>>>" + employee + ">>>" + employee.getId());
return employee == null ? details : employee;
}
};