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

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