mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
/**
|
|
* @id java/examples/singletonblock
|
|
* @name Singleton blocks
|
|
* @description Finds block statements containing a single statement
|
|
* @tags block
|
|
* statement
|
|
*/
|
|
|
|
import java
|
|
|
|
from BlockStmt b
|
|
where b.getNumStmt() = 1
|
|
select b
|