You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/09/05 20:00:17 UTC

svn commit: r811690 - /commons/proper/math/trunk/checkstyle.xml

Author: psteitz
Date: Sat Sep  5 18:00:17 2009
New Revision: 811690

URL: http://svn.apache.org/viewvc?rev=811690&view=rev
Log:
Added check for newline at end of file.

Modified:
    commons/proper/math/trunk/checkstyle.xml

Modified: commons/proper/math/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/checkstyle.xml?rev=811690&r1=811689&r2=811690&view=diff
==============================================================================
--- commons/proper/math/trunk/checkstyle.xml (original)
+++ commons/proper/math/trunk/checkstyle.xml Sat Sep  5 18:00:17 2009
@@ -97,7 +97,6 @@
       <property name="illegalPattern" value="true"/>
       <property name="message" value="Trailing whitespace"/>
     </module>
-    
 
     <!--
     <module name="DeclarationOrder" />
@@ -112,6 +111,9 @@
     -->
   </module>
   
+  <!-- Require files to end with newline characters -->
+  <module name="NewlineAtEndOfFile"/>
+  
   <!-- Require package javadoc -->
   <module name="PackageHtml"/>