remove null check

This commit is contained in:
Shinsuke Sugaya 2017-04-24 23:24:48 +09:00
parent 5cb04f6630
commit da7e2e22bd

View file

@ -95,10 +95,6 @@ public class UserInfoHelper {
}
final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher();
if (cipher == null) {
return null;
}
userCode = cipher.encrypt(userCode);
request.setAttribute(Constants.USER_CODE, userCode);
deleteUserCodeFromCookie(request);