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