Skip to content

Commit

Permalink
Proper check
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Dor committed Sep 18, 2017
1 parent 64973f5 commit 5179c4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private void postConstruct() {
log.info("Port: {}", getPort());
log.info("TLS Mode: {}", getTls());
log.info("Login: {}", getLogin());
log.info("Has password: {}", StringUtils.isBlank(getPassword()));
log.info("Has password: {}", !StringUtils.isBlank(getPassword()));
log.info("E-mail: {}", getEmail());
if (!StringUtils.startsWith(getTemplate(), "classpath:")) {
if (StringUtils.isBlank(getTemplate())) {
Expand Down

0 comments on commit 5179c4d

Please # to comment.