mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
/**
|
|
* @name Unused private method
|
|
* @description Finds private methods that are not accessed
|
|
* @tags method
|
|
* access
|
|
* private
|
|
*/
|
|
|
|
import java
|
|
|
|
from Method m
|
|
where m.isPrivate()
|
|
and not exists(m.getAReference())
|
|
and not m instanceof InitializerMethod
|
|
select m
|