Remove some comments and empty lines
This commit is contained in:
parent
0aacea1686
commit
715b9a18cc
|
@ -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");
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue