From 74ecf3675b4c2602573082f2a53baa728b755863 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Tue, 9 Mar 2021 10:25:39 -0600 Subject: [PATCH] Issue #6026 - Limiting scope of PR Signed-off-by: Joakim Erdfelt --- .../eclipse/jetty/security/ConstraintSecurityHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java b/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java index 768eef068236..de7fd0025b3a 100644 --- a/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java +++ b/jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java @@ -716,8 +716,8 @@ protected boolean checkWebResourcePermissions(String pathInContext, Request requ public void dump(Appendable out, String indent) throws IOException { dumpObjects(out, indent, - DumpableCollection.from("roles", _roles), - DumpableCollection.from("constraints", _constraintMappings)); + DumpableCollection.from("roles", _roles), + DumpableCollection.from("constraints", _constraintMappings)); } @Override @@ -741,7 +741,7 @@ public boolean checkPathsWithUncoveredHttpMethods() Set paths = getPathsWithUncoveredHttpMethods(); if (paths != null && !paths.isEmpty()) { - LOG.warn("{} has uncovered http methods for the following paths: {}", + LOG.warn("{} has uncovered HTTP methods for the following paths: {}", ContextHandler.getCurrentContext(), paths); return true; }