mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
13 lines
198 B
Plaintext
13 lines
198 B
Plaintext
/**
|
|
* @name Unused parameter
|
|
* @description Finds parameters that are not accessed
|
|
* @tags parameter
|
|
* access
|
|
*/
|
|
|
|
import java
|
|
|
|
from Parameter p
|
|
where not exists(p.getAnAccess())
|
|
select p
|