From 85fd4e71ce90415cbae8437b3e6d2b973570adbc Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Sun, 25 May 2014 15:37:58 -0400 Subject: [PATCH] typo in error message --- .../src/main/java/org/mitre/openid/connect/web/ClientAPI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientAPI.java b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientAPI.java index e5940499b..d3620120f 100644 --- a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientAPI.java +++ b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientAPI.java @@ -296,7 +296,7 @@ public class ClientAPI { if (client == null) { logger.error("apiShowClient failed; client with id " + id + " could not be found."); model.addAttribute("code", HttpStatus.NOT_FOUND); - model.addAttribute("errorMessage", "The requested client with id " + id + "could not be found."); + model.addAttribute("errorMessage", "The requested client with id " + id + " could not be found."); return "jsonErrorView"; }