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 25b012d commit 00235edCopy full SHA for 00235ed
java/ql/src/semmle/code/java/frameworks/Servlets.qll
@@ -352,7 +352,7 @@ class FilterChain extends Interface {
352
FilterChain() { hasQualifiedName("javax.servlet", "FilterChain") }
353
}
354
355
-/** Holds if `m` is a filter handler method (for example `doFilter`). */
+/** Holds if `m` is an implementation of `javax.servlet.Filter.doFilter`. */
356
predicate isDoFilterMethod(Method m) {
357
m.getName() = "doFilter" and
358
m.getDeclaringType() instanceof FilterClass and
0 commit comments