Skip to content

Commit

Permalink
#32 : Fixed Sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gazbert committed Mar 23, 2020
1 parent e1f7ad2 commit 577fd6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public class JwtAuthenticationRequest {

// For Jackson
public JwtAuthenticationRequest() {
username = "";
password = "";
}

public JwtAuthenticationRequest(String username, String password) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class JwtAuthenticationResponse {

// For Jackson
public JwtAuthenticationResponse() {
token = "";
}

public JwtAuthenticationResponse(String token) {
Expand Down

0 comments on commit 577fd6e

Please sign in to comment.