You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ec...@apache.org on 2014/11/19 03:35:01 UTC

svn commit: r1640466 - in /commons/proper/vfs/trunk: checkstyle.properties checkstyle.xml

Author: ecki
Date: Wed Nov 19 02:35:01 2014
New Revision: 1640466

URL: http://svn.apache.org/r1640466
Log:
checkstyle: Remove deprecated DoubleCheckedLocking, use RAT for license check only

Modified:
    commons/proper/vfs/trunk/checkstyle.properties
    commons/proper/vfs/trunk/checkstyle.xml

Modified: commons/proper/vfs/trunk/checkstyle.properties
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/checkstyle.properties?rev=1640466&r1=1640465&r2=1640466&view=diff
==============================================================================
--- commons/proper/vfs/trunk/checkstyle.properties (original)
+++ commons/proper/vfs/trunk/checkstyle.properties Wed Nov 19 02:35:01 2014
@@ -22,4 +22,3 @@ checkstyle.paren.pad = ignore
 checkstyle.ignore.whitespace.cast = true
 checkstyle.javadoc.scope = package
 checkstyle.require.packagehtml = true
-checkstyle.header.file = LICENSE.txt

Modified: commons/proper/vfs/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/checkstyle.xml?rev=1640466&r1=1640465&r2=1640466&view=diff
==============================================================================
--- commons/proper/vfs/trunk/checkstyle.xml (original)
+++ commons/proper/vfs/trunk/checkstyle.xml Wed Nov 19 02:35:01 2014
@@ -39,14 +39,6 @@
     <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
     <module name="Translation"/>
 
-    <!-- Checks for Headers                              -->
-    <!-- See http://checkstyle.sourceforge.net/config_header.html#Header -->
-    <module name="Header">
-        <property name="headerFile" value="${licensedir}"/>
-        <property name="fileExtensions" value="java"/>
-        <!--<property name="ignoreLines" value="2"/> -->
-    </module>
-
     <!-- Checks for Tab characters -->
     <!-- See http://checkstyle.sourceforge.net/config_whitespace.html#FileTabCharacter -->
     <module name="FileTabCharacter">
@@ -178,7 +170,6 @@
         <!-- Checks for common coding problems               -->
         <!-- See http://checkstyle.sf.net/config_coding.html -->
         <module name="CovariantEquals"/>
-        <module name="DoubleCheckedLocking"/>
         <module name="EqualsHashCode"/>
         <module name="IllegalInstantiation"/>
         <!-- <module name="InnerAssignment"/> -->