fix from Antonio Ospite was applied to remove remnants of DoubleCheckedLocking #sf705

This commit is contained in:
Roman Ivanov 2013-10-03 16:41:56 -07:00
parent 55a033c0b2
commit 93322bd3df
3 changed files with 0 additions and 11 deletions

View File

@ -333,10 +333,6 @@
<!-- See http://checkstyle.sf.net/config_coding.html !-->
<module name="DefaultComesLast"/>
<!-- The "double-checked locking" idiom (DCL) tries to avoid the runtime cost of synchronization. !-->
<!-- See http://checkstyle.sf.net/config_coding.html !-->
<module name="DoubleCheckedLocking"/>
<!-- Detects empty statements (standalone ;). !-->
<!-- See http://checkstyle.sf.net/config_coding.html !-->
<module name="EmptyStatement"/>

View File

@ -389,12 +389,6 @@
<module name="CovariantEquals">
</module>
<!-- See http://checkstyle.sf.net/config_coding.html -->
<!-- The "double-checked locking" idiom (DCL) tries to avoid the runtime
cost of synchronization. -->
<module name="DoubleCheckedLocking">
</module>
<!-- See http://checkstyle.sf.net/config_coding.html -->
<!-- Detects empty statements (standalone ;). -->
<module name="EmptyStatement">

View File

@ -145,7 +145,6 @@
<!-- Checks for common coding problems -->
<!-- See http://checkstyle.sf.net/config_coding.html -->
<module name="AvoidInlineConditionals"/>
<module name="DoubleCheckedLocking"/> <!-- MY FAVOURITE -->
<module name="EmptyStatement"/>
<module name="EqualsHashCode"/>
<module name="HiddenField"/>