Skip to content
Snippets Groups Projects
Commit c8d7c9ee authored by Piotr Gawron's avatar Piotr Gawron
Browse files

password encoder is no longer needed

parent defd006b
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!497Resolve "overlays should be defined per project not per map"
...@@ -183,12 +183,6 @@ public class ProjectService implements IProjectService { ...@@ -183,12 +183,6 @@ public class ProjectService implements IProjectService {
@Autowired @Autowired
private CommentDao commentDao; private CommentDao commentDao;
/**
* Service that provides password encoding.
*/
@Autowired
private PasswordEncoder passwordEncoder;
/** /**
* Module that allows to annotate maps. * Module that allows to annotate maps.
*/ */
...@@ -889,23 +883,6 @@ public class ProjectService implements IProjectService { ...@@ -889,23 +883,6 @@ public class ProjectService implements IProjectService {
this.commentService = commentService; this.commentService = commentService;
} }
/**
* @return the passwordEncoder
* @see #passwordEncoder
*/
public PasswordEncoder getPasswordEncoder() {
return passwordEncoder;
}
/**
* @param passwordEncoder
* the passwordEncoder to set
* @see #passwordEncoder
*/
public void setPasswordEncoder(PasswordEncoder passwordEncoder) {
this.passwordEncoder = passwordEncoder;
}
/** /**
* @return the commentDao * @return the commentDao
* @see #commentDao * @see #commentDao
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment