Skip to content

Commit

Permalink
Syntax error fix for default filter (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanFranzWeiser authored Feb 10, 2025
1 parent 9899d3e commit 7fbe436
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public final class DispatcherTracker
extends ServiceTracker<HttpServlet, HttpServlet>
{
final static String DEFAULT_FILTER = "((http.felix.dispatcher=*)(" + Constants.OBJECTCLASS + "=" + HttpServlet.class.getName() + "))";
final static String DEFAULT_FILTER = "(&(http.felix.dispatcher=*)(" + Constants.OBJECTCLASS + "=" + HttpServlet.class.getName() + "))";

private final ServletConfig config;
private HttpServlet dispatcher;
Expand Down

0 comments on commit 7fbe436

Please sign in to comment.