File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/ql/lib/semmle/code/java/frameworks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -349,23 +349,23 @@ predicate isRequestGetParamMethod(MethodAccess ma) {
349
349
}
350
350
351
351
/** The Java EE RequestDispatcher. */
352
- library class RequestDispatcher extends RefType {
352
+ class RequestDispatcher extends RefType {
353
353
RequestDispatcher ( ) {
354
354
this .hasQualifiedName ( [ "javax.servlet" , "jakarta.servlet" ] , "RequestDispatcher" ) or
355
355
this .hasQualifiedName ( "javax.portlet" , "PortletRequestDispatcher" )
356
356
}
357
357
}
358
358
359
359
/** The `getRequestDispatcher` method. */
360
- library class GetRequestDispatcherMethod extends Method {
360
+ class GetRequestDispatcherMethod extends Method {
361
361
GetRequestDispatcherMethod ( ) {
362
362
this .getReturnType ( ) instanceof RequestDispatcher and
363
363
this .getName ( ) = "getRequestDispatcher"
364
364
}
365
365
}
366
366
367
367
/** The request dispatch method. */
368
- library class RequestDispatchMethod extends Method {
368
+ class RequestDispatchMethod extends Method {
369
369
RequestDispatchMethod ( ) {
370
370
this .getDeclaringType ( ) instanceof RequestDispatcher and
371
371
this .hasName ( [ "forward" , "include" ] )
You can’t perform that action at this time.
0 commit comments