clean up unused getter/setter

pull/650/head
Justin Richer 2013-09-10 11:38:42 -04:00
parent 1bf560842e
commit b4783e753f
1 changed files with 0 additions and 14 deletions

View File

@ -72,18 +72,4 @@ public class DefaultUserInfoService implements UserInfoService {
return userInfoRepository.getByUsername(username);
}
/**
* @return the userInfoRepository
*/
public UserInfoRepository getUserInfoRepository() {
return userInfoRepository;
}
/**
* @param userInfoRepository the userInfoRepository to set
*/
public void setUserInfoRepository(UserInfoRepository userInfoRepository) {
this.userInfoRepository = userInfoRepository;
}
}