Change visibility to package private

This commit is contained in:
Sankaranarayanan Viswanathan
2014-10-08 21:03:53 -04:00
parent 174be9c2d1
commit 47da4a2a1a

View File

@@ -104,9 +104,9 @@ public class UserService {
/**
* should triggers after successful login
*
* Note: Visibility changed to protected to enabled spying on this method
* Note: Visibility changed to package private to enabled spying on this method
*/
protected void afterLogin(User user) {
void afterLogin(User user) {
Date lastLogin = user.getLastLogin();
Date now = new Date();