Files
codeql/java/ql/examples/synchronizedmethod.ql
2019-07-26 17:47:11 +02:00

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