mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
7 lines
223 B
Plaintext
7 lines
223 B
Plaintext
import java
|
|
|
|
from ControlFlowNode n, ControlFlowNode succ
|
|
where succ = n.getASuccessor() and n.getLocation().getFile().getExtension() = "java" and
|
|
not n.getFile().getStem() = "PopulateRuntimeException"
|
|
select n, succ
|