Project

General

Profile

« Previous | Next » 

Revision 49554

Added by Sofia Baltzi over 6 years ago

Remove some comments and empty lines

View differences:

modules/dnet-openaire-users/trunk/src/main/java/eu/dnetlib/openaire/usermanagement/ResetPasswordServlet.java
49 49
            try {
50 50
                ldapActions.resetPassword(username, password);
51 51
                logger.info("password resetted");
52

  
53 52
            } catch (Exception e) {
54 53
                logger.error("LDAP error in resetting password", e);
55 54
                response.sendRedirect("./error.jsp");
modules/dnet-openaire-users/trunk/src/main/webapp/resetPassword.jsp
91 91
                            if (myInput.value.match(lowerCaseLetters)) {
92 92
                              $(".msg_lowercase_letter").fadeOut();
93 93
                            } else {
94
                              //$(".msg_please_add").fadeIn();
95 94
                              $(".msg_lowercase_letter").fadeIn();
96 95
                            }
97 96

  
......
100 99
                            if (myInput.value.match(upperCaseLetters)) {
101 100
                              $(".msg_capital_letter").fadeOut();
102 101
                            } else {
103
                              //$(".msg_please_add").fadeIn();
104 102
                              $(".msg_capital_letter").fadeIn();
105 103
                            }
106 104

  
......
109 107
                            if (myInput.value.match(numbers)) {
110 108
                              $(".msg_number").fadeOut();
111 109
                            } else {
112
                              //$(".msg_please_add").fadeIn();
113 110
                              $(".msg_number").fadeIn();
114 111
                            }
115 112

  
......
117 114
                            if (myInput.value.length >= 6) {
118 115
                              $(".msg_lenght").fadeOut();
119 116
                            } else {
120
                              //$(".msg_please_add").fadeIn();
121 117
                              $(".msg_lenght").fadeIn();
122 118
                            }
123 119

  

Also available in: Unified diff