mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
230 B
Plaintext
14 lines
230 B
Plaintext
/**
|
|
* @name Unused local variable
|
|
* @description Finds local variables that are not accessed
|
|
* @tags variable
|
|
* local
|
|
* access
|
|
*/
|
|
|
|
import java
|
|
|
|
from LocalVariableDecl v
|
|
where not exists(v.getAnAccess())
|
|
select v
|