mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
213 B
Plaintext
14 lines
213 B
Plaintext
/**
|
|
* @name Fields declared volatile
|
|
* @description Finds fields with a 'volatile' modifier
|
|
* @tags field
|
|
* volatile
|
|
* synchronization
|
|
*/
|
|
|
|
import java
|
|
|
|
from Field f
|
|
where f.isVolatile()
|
|
select f
|