rename main class
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-08 12:01:10 +02:00
parent 9eea30b23e
commit c0f655b0df
3 changed files with 12 additions and 7 deletions

View File

@@ -20,8 +20,8 @@ public class AccountServiceImpl implements AccountService {
public AccountServiceImpl(
@Autowired UserRepository userRepository,
@Autowired AuthenticationManager authenticationManager,
@Autowired PasswordEncoder passwordEncoder
) {
@Autowired PasswordEncoder passwordEncoder)
{
this.authenticationManager = authenticationManager;
this.userRepository = userRepository;
this.passwordEncoder = passwordEncoder;