Skip to content

Commit

Permalink
Use same case for all fields in toString
Browse files Browse the repository at this point in the history
  • Loading branch information
valery1707 authored and jzheaux committed Oct 16, 2023
1 parent d9399df commit cc86afe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public String toString() {
sb.append("Password=[PROTECTED], ");
sb.append("Enabled=").append(this.enabled).append(", ");
sb.append("AccountNonExpired=").append(this.accountNonExpired).append(", ");
sb.append("credentialsNonExpired=").append(this.credentialsNonExpired).append(", ");
sb.append("CredentialsNonExpired=").append(this.credentialsNonExpired).append(", ");
sb.append("AccountNonLocked=").append(this.accountNonLocked).append(", ");
sb.append("Granted Authorities=").append(this.authorities).append("]");
return sb.toString();
Expand Down

0 comments on commit cc86afe

Please sign in to comment.