mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
8 lines
204 B
Plaintext
8 lines
204 B
Plaintext
import java
|
|
import semmle.code.java.Diagnostics
|
|
|
|
from MethodCall ma
|
|
select ma, ma.getCallee().getDeclaringType().getQualifiedName(), ma.getCallee().getName()
|
|
|
|
query predicate diag(Diagnostic d) { any() }
|