Skip to content

Commit 6e73d13

Browse files
haby0smowton
andauthored
Update java/ql/src/semmle/code/java/frameworks/Servlets.qll
Co-authored-by: Chris Smowton <[email protected]>
1 parent be39883 commit 6e73d13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/semmle/code/java/frameworks/Servlets.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ class FilterChain extends Interface {
354354

355355
/** Holds if `m` is a filter handler method (for example `doFilter`). */
356356
predicate isDoFilterMethod(Method m) {
357-
m.getName() ="doFilter" and
357+
m.getName() = "doFilter" and
358358
m.getDeclaringType() instanceof FilterClass and
359359
m.getNumberOfParameters() = 3 and
360360
m.getParameter(0).getType() instanceof ServletRequest and

0 commit comments

Comments
 (0)