Skip to content

Commit

Permalink
Fix some code imperfections
Browse files Browse the repository at this point in the history
  • Loading branch information
rmiccoli committed Feb 25, 2022
1 parent 0a21dae commit 3d1302c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public String confimAccess(Map<String, Object> model,
}

if (client == null) {
logger.error("confirmAccess: could not find client %s", authRequest.getClientId());
logger.error("confirmAccess: could not find client {}", authRequest.getClientId());
model.put(HttpCodeView.CODE, HttpStatus.NOT_FOUND);
return HttpCodeView.VIEWNAME;
}
Expand Down Expand Up @@ -170,9 +170,9 @@ public String confimAccess(Map<String, Object> model,
model.put("auth_request", authRequest);
model.put("client", client);

String redirect_uri = authRequest.getRedirectUri();
String redirectUri = authRequest.getRedirectUri();

model.put("redirect_uri", redirect_uri);
model.put("redirect_uri", redirectUri);


// pre-process the scopes
Expand Down

0 comments on commit 3d1302c

Please sign in to comment.