You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2013/07/26 13:42:07 UTC

svn commit: r1507270 - /httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy

Author: olegk
Date: Fri Jul 26 11:42:07 2013
New Revision: 1507270

URL: http://svn.apache.org/r1507270
Log:
Do not add last line when fixing line delimiters in source files

Modified:
    httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy

Modified: httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy
URL: http://svn.apache.org/viewvc/httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy?rev=1507270&r1=1507269&r2=1507270&view=diff
==============================================================================
--- httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy (original)
+++ httpcomponents/project-release-tools/trunk/buildSrc/src/main/groovy/Line.groovy Fri Jul 26 11:42:07 2013
@@ -34,7 +34,7 @@ class Line {
     }
 
     static Map<String, Object> delim(String s) {
-        ['eol': FixCrLfFilter.CrLf.newInstance(s)]
+        ['eol': FixCrLfFilter.CrLf.newInstance(s), 'fixlast': false]
     }
 
     static String CRLF  = 'crlf'