Files
codeql/java/ql/examples/snippets/emptyblock.ql
2020-09-08 08:40:20 +02:00

15 lines
227 B
Plaintext

/**
* @id java/examples/emptyblock
* @name Empty blocks
* @description Finds empty block statements
* @tags empty
* block
* statement
*/
import java
from BlockStmt blk
where blk.getNumStmt() = 0
select blk