Merge pull request #7263 from eclipse/jetty-10.0.x-7262-ServletHandlerGetFilterChain

Issue #7262 - make the ServletHandler.getFilterChain method protected
This commit is contained in:
Lachlan 2021-12-15 10:17:07 +11:00 committed by GitHub
commit 39585ea86e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ public class ServletHandler extends ScopedHandler
return _servletNameMap.get(target);
}
private FilterChain getFilterChain(Request baseRequest, String pathInContext, ServletHolder servletHolder)
protected FilterChain getFilterChain(Request baseRequest, String pathInContext, ServletHolder servletHolder)
{
Objects.requireNonNull(servletHolder);
String key = pathInContext == null ? servletHolder.getName() : pathInContext;