From 3e4b6355670efe573b43dc95060a1a862d5b738b Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 23 Sep 2021 15:31:46 -0500 Subject: [PATCH] feat: shorten sentence https://github.com/GluuFederation/scim/issues/26 --- .../java/org/gluu/oxtrust/auth/none/NoProtectionService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/java/org/gluu/oxtrust/auth/none/NoProtectionService.java b/service/src/main/java/org/gluu/oxtrust/auth/none/NoProtectionService.java index f6b09d4ca..b7c39e85a 100644 --- a/service/src/main/java/org/gluu/oxtrust/auth/none/NoProtectionService.java +++ b/service/src/main/java/org/gluu/oxtrust/auth/none/NoProtectionService.java @@ -18,7 +18,7 @@ public class NoProtectionService implements IProtectionService { @Override public Response processAuthorization(HttpHeaders headers, ResourceInfo resourceInfo) { - log.warn("Allowing access to this endpoint WITHOUT SECURITY checks in place. " + + log.warn("Allowing access to endpoint WITHOUT SECURITY checks in place. " + "Ensure this is intedended behavior!"); return null; }