Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes compile error #5422

Merged
merged 3 commits into from Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -23,7 +23,7 @@

/**
* The implementation of the FacesServletFactory.
*
*
* @author Manfred Riem
*/
public class FacesServletFactoryImpl extends FacesServletFactory {
Expand All @@ -32,7 +32,7 @@ public class FacesServletFactoryImpl extends FacesServletFactory {
* Stores the map of FacesServlet instances keyed by ServletConfig.
*/
private HashMap<ServletConfig, Servlet> servlets = new HashMap<>();

@Override
public Servlet getFacesServlet(ServletConfig config) {
Servlet servlet = servlets.get(config);
Expand All @@ -42,4 +42,9 @@ public Servlet getFacesServlet(ServletConfig config) {
}
return servlet;
}

@Override
public FacesServletFactory getWrapped() {
return null; // we don't actually wrap anything
}
}