mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
231 B
Plaintext
14 lines
231 B
Plaintext
/**
|
|
* @id java/examples/unusedparam
|
|
* @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
|