Poor Style: Empty Synchronized Block
From OWASP
This page was marked to be reviewed for deletion.
#REDIRECT Failure to follow guideline/specification
Last revision (mm/dd/yy): 4/7/2009
Contents |
Description
This synchronized block contains no statements; it is unlikely the synchronization achieves the intended effect.
Synchronization in Java can be tricky. An empty synchronized block is often a sign that a programmer is wrestling with synchronization but has not yet achieved the result they intend.
Risk Factors
TBD
Examples
synchronized(this) { }
Related Attacks
Related Vulnerabilities
Related Controls
Related Technical Impacts
References
TBD

