mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
/**
|
|
* @name Empty blocks
|
|
* @description Finds empty block statements
|
|
* @tags empty
|
|
* block
|
|
* statement
|
|
*/
|
|
|
|
import java
|
|
|
|
from Block blk
|
|
where blk.getNumStmt() = 0
|
|
select blk
|