Skip to content

Commit

Permalink
Issue #6026 - Limiting scope of PR
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed Mar 9, 2021
1 parent da83f05 commit 74ecf36
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -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
Expand All @@ -741,7 +741,7 @@ public boolean checkPathsWithUncoveredHttpMethods()
Set<String> 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;
}
Expand Down

0 comments on commit 74ecf36

Please sign in to comment.