From 70399bbe5fa7b484da8b92ea5b5beec28fb88fe9 Mon Sep 17 00:00:00 2001 From: YuriyZ Date: Wed, 7 Aug 2024 19:25:05 +0300 Subject: [PATCH] fix(oxauth): typo fix #1916 (version_4.5.3.sp1) --- .../oxauth/introspection/ws/rs/IntrospectionWebService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/src/main/java/org/gluu/oxauth/introspection/ws/rs/IntrospectionWebService.java b/Server/src/main/java/org/gluu/oxauth/introspection/ws/rs/IntrospectionWebService.java index 4332ea423..87f99b98f 100644 --- a/Server/src/main/java/org/gluu/oxauth/introspection/ws/rs/IntrospectionWebService.java +++ b/Server/src/main/java/org/gluu/oxauth/introspection/ws/rs/IntrospectionWebService.java @@ -113,9 +113,9 @@ private AuthorizationGrant validateAuthorization(String p_authorization, String if (authorizationGrant == null) { log.debug("Authorization grant is null."); if (isTrue(pair.getSecond())) { - log.debug("Returned {\"active\":false."); + log.debug("Returned {\"active\":false}."); throw new WebApplicationException(Response.status(Response.Status.OK) - .entity("{\"active\":false") + .entity("{\"active\":false}") .type(MediaType.APPLICATION_JSON_TYPE) .build()); }