mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
import java
|
|
|
|
from Method m
|
|
where
|
|
m.getDeclaringType().getName() = ["Test", "CharSequence"] and
|
|
m.getName() = ["toString", "equals", "hashCode"]
|
|
select m.getName(), m.getDeclaringType().getQualifiedName()
|