Remove some comments and empty lines

This commit is contained in:
Sofia Baltzi 2017-10-19 12:17:42 +00:00
parent 0aacea1686
commit 715b9a18cc
2 changed files with 0 additions and 5 deletions

View File

@ -49,7 +49,6 @@ public class ResetPasswordServlet extends HttpServlet {
try {
ldapActions.resetPassword(username, password);
logger.info("password resetted");
} catch (Exception e) {
logger.error("LDAP error in resetting password", e);
response.sendRedirect("./error.jsp");

View File

@ -91,7 +91,6 @@
if (myInput.value.match(lowerCaseLetters)) {
$(".msg_lowercase_letter").fadeOut();
} else {
//$(".msg_please_add").fadeIn();
$(".msg_lowercase_letter").fadeIn();
}
@ -100,7 +99,6 @@
if (myInput.value.match(upperCaseLetters)) {
$(".msg_capital_letter").fadeOut();
} else {
//$(".msg_please_add").fadeIn();
$(".msg_capital_letter").fadeIn();
}
@ -109,7 +107,6 @@
if (myInput.value.match(numbers)) {
$(".msg_number").fadeOut();
} else {
//$(".msg_please_add").fadeIn();
$(".msg_number").fadeIn();
}
@ -117,7 +114,6 @@
if (myInput.value.length >= 6) {
$(".msg_lenght").fadeOut();
} else {
//$(".msg_please_add").fadeIn();
$(".msg_lenght").fadeIn();
}