Remove todo comment associated to #602

This commit is contained in:
ljacqu 2016-05-30 20:02:07 +02:00
parent 8a0655e333
commit 18ff5d5331

View File

@ -49,8 +49,6 @@ public class ValidationService {
|| password.length() > settings.getProperty(SecuritySettings.MAX_PASSWORD_LENGTH)) {
return MessageKey.INVALID_PASSWORD_LENGTH;
} else if (settings.getProperty(SecuritySettings.UNSAFE_PASSWORDS).contains(passLow)) {
// TODO #602 20160312: The UNSAFE_PASSWORDS should be all lowercase
// -> introduce a lowercase String list property type
return MessageKey.PASSWORD_UNSAFE_ERROR;
}
return null;