You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2014/10/03 16:27:38 UTC

[22/50] [abbrv] git commit: jclouds has to use git core.autocrlf false (or LF line endings) to pass tests. Without this checkstyle setting, checkstyle fails on windows (looking for CRLF).

jclouds has to use git core.autocrlf false (or LF line endings) to pass tests. Without this checkstyle setting, checkstyle fails on windows (looking for CRLF).


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/816e70ea
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/816e70ea
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/816e70ea

Branch: refs/heads/fix-jclouds-538
Commit: 816e70ea7ba7428a54e638be0386917d84b26456
Parents: d309e45
Author: Zack Shoylev <za...@rackspace.com>
Authored: Mon Sep 15 11:30:22 2014 -0500
Committer: Zack Shoylev <za...@rackspace.com>
Committed: Mon Sep 15 13:41:35 2014 -0500

----------------------------------------------------------------------
 resources/checkstyle.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/816e70ea/resources/checkstyle.xml
----------------------------------------------------------------------
diff --git a/resources/checkstyle.xml b/resources/checkstyle.xml
index 40e734b..efc4a67 100644
--- a/resources/checkstyle.xml
+++ b/resources/checkstyle.xml
@@ -21,8 +21,10 @@
 
 <module name="Checker">
     <property name="severity" value="warning"/>
-    <module name="NewlineAtEndOfFile"/>
-    <module name="TreeWalker">
+        <module name="NewlineAtEndOfFile">
+            <property name="lineSeparator" value="lf"/>
+        </module>
+        <module name="TreeWalker">
         <module name="AvoidStarImport"/>
         <module name="EmptyStatement"/>
         <module name="IllegalInstantiation">