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