fix from Antonio Ospite was applied to remove remnants of DoubleCheckedLocking #sf705
This commit is contained in:
parent
55a033c0b2
commit
93322bd3df
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue