mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
/**
|
|
* @name Synchronized methods
|
|
* @description Finds methods that are synchronized
|
|
* @tags method
|
|
* synchronized
|
|
* modifier
|
|
*/
|
|
|
|
import java
|
|
|
|
from Method m
|
|
where m.isSynchronized()
|
|
select m
|