We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be39883 commit 6e73d13Copy full SHA for 6e73d13
java/ql/src/semmle/code/java/frameworks/Servlets.qll
@@ -354,7 +354,7 @@ class FilterChain extends Interface {
354
355
/** Holds if `m` is a filter handler method (for example `doFilter`). */
356
predicate isDoFilterMethod(Method m) {
357
- m.getName() ="doFilter" and
+ m.getName() = "doFilter" and
358
m.getDeclaringType() instanceof FilterClass and
359
m.getNumberOfParameters() = 3 and
360
m.getParameter(0).getType() instanceof ServletRequest and
0 commit comments