Author: oheger
Date: Mon Jul 30 19:33:03 2012
New Revision: 1367235
URL: http://svn.apache.org/viewvc?rev=1367235&view=rev
Log:
Added a suppression to exclude the warning about double-checked locking in
DynamicCombinedConfiguration.
Modified:
commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml
Modified: commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml?rev=1367235&r1=1367234&r2=1367235&view=diff
==============================================================================
--- commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml
(original)
+++ commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml Mon Jul
30 19:33:03 2012
@@ -28,4 +28,6 @@
<suppress checks="MissingSwitchDefault"
files="PropertiesConfiguration.java"/>
+ <suppress checks="DoubleCheckedLocking"
files="DynamicCombinedConfiguration.java"
+ lines="800-900"/>
</suppressions>