Merge branch 'develop' into add-user-validator-tests

This commit is contained in:
ronanclancy
2019-03-26 20:36:06 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package org.owasp.webwolf.user;
import lombok.AllArgsConstructor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
@ -11,7 +12,6 @@ import org.springframework.stereotype.Service;
* @since 3/19/17.
*/
@Service
@AllArgsConstructor
public class UserService implements UserDetailsService {
@Autowired