Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikaël Barbero2012-11-13 11:00:43 +0000
committerMikaël Barbero2012-11-13 11:00:43 +0000
commitbdf177765830c32d10b2b5aef354bfe40048f1be (patch)
treed30f5c38d23a1eb419eb19258faaa53bc541654f
parenta2975d8ac138339ef7beded5cab0a63dab644ab4 (diff)
downloadorg.eclipse.emf.compare-bdf177765830c32d10b2b5aef354bfe40048f1be.tar.gz
org.eclipse.emf.compare-bdf177765830c32d10b2b5aef354bfe40048f1be.tar.xz
org.eclipse.emf.compare-bdf177765830c32d10b2b5aef354bfe40048f1be.zip
remove DoubleCheckedLocking rule call
CheckStyle 5.6 removes this check: "Removed the DoubleCheckedLocking check, as in Java 5 (and beyond), using the volatile keyword addresses the issue. See http://jeremymanson.blogspot.com.au/2008/05/double-checked-locking.html for more details"
-rw-r--r--org.eclipse.emf.compare-parent/codeStyle/EMFCompareCheckstyle5Configuration.xml3
1 files changed, 0 insertions, 3 deletions
diff --git a/org.eclipse.emf.compare-parent/codeStyle/EMFCompareCheckstyle5Configuration.xml b/org.eclipse.emf.compare-parent/codeStyle/EMFCompareCheckstyle5Configuration.xml
index 951a6c236..22f9c5866 100644
--- a/org.eclipse.emf.compare-parent/codeStyle/EMFCompareCheckstyle5Configuration.xml
+++ b/org.eclipse.emf.compare-parent/codeStyle/EMFCompareCheckstyle5Configuration.xml
@@ -170,9 +170,6 @@
<property name="severity" value="ignore"/>
<metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" value="inherit"/>
</module>
- <module name="DoubleCheckedLocking">
- <property name="severity" value="error"/>
- </module>
<module name="EmptyStatement">
<property name="severity" value="error"/>
</module>

Back to the top