mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01: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()
|