From 0d882faecac2ab71c05fee3072a10d333c6ba1af Mon Sep 17 00:00:00 2001 From: William Kim Date: Mon, 15 Jul 2013 14:24:04 -0400 Subject: [PATCH] added a TODO and fixed some comment typos. --- .../java/org/mitre/openid/connect/view/UserInfoView.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/openid-connect-server/src/main/java/org/mitre/openid/connect/view/UserInfoView.java b/openid-connect-server/src/main/java/org/mitre/openid/connect/view/UserInfoView.java index 191b20fa4..1c0ffa22e 100644 --- a/openid-connect-server/src/main/java/org/mitre/openid/connect/view/UserInfoView.java +++ b/openid-connect-server/src/main/java/org/mitre/openid/connect/view/UserInfoView.java @@ -119,7 +119,8 @@ public class UserInfoView extends AbstractView { } } catch (IOException e) { - + + //TODO: Error Handling logger.error("IOException in UserInfoView.java: ", e); } @@ -178,7 +179,7 @@ public class UserInfoView extends AbstractView { } /** - * Build a JSON response according to the request object recieved. + * Build a JSON response according to the request object received. * * Claims requested in requestObj.userinfo.claims are added to any * claims corresponding to requested scopes, if any. @@ -203,7 +204,7 @@ public class UserInfoView extends AbstractView { return obj; } - // TODO: this mehod is likely to be fragile if the data model changes at all + // TODO: this method is likely to be fragile if the data model changes at all //For each claim found, add it if not already present for (Entry i : claims.getAsJsonObject().entrySet()) {