Skip to content

Commit

Permalink
Merge pull request #5422 from arjantijms/master
Browse files Browse the repository at this point in the history
Fixes compile error
  • Loading branch information
arjantijms committed Mar 23, 2024
2 parents d44774e + 9f88d22 commit 369793c
Showing 1 changed file with 7 additions and 2 deletions.
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
}
}

0 comments on commit 369793c

Please sign in to comment.