You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2019/05/29 13:20:42 UTC

[opennlp] branch master updated: OPENNLP-1264 Fix checkstyle NewlineAtEndOfFile for unix

This is an automated email from the ASF dual-hosted git repository.

joern pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/opennlp.git


The following commit(s) were added to refs/heads/master by this push:
     new cfa7bb6  OPENNLP-1264 Fix checkstyle NewlineAtEndOfFile for unix
cfa7bb6 is described below

commit cfa7bb6ad751ed18078a61d036e0658961f05ea6
Author: madhawa-gunasekara <ma...@gmail.com>
AuthorDate: Sat May 25 02:02:09 2019 +0530

    OPENNLP-1264 Fix checkstyle NewlineAtEndOfFile for unix
---
 checkstyle.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/checkstyle.xml b/checkstyle.xml
index 88e653f..0f705ec 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -42,7 +42,9 @@
     <property name="eachLine" value="true"/>
   </module>
 
-  <module name="NewlineAtEndOfFile" />
+  <module name="NewlineAtEndOfFile">
+    <property name="lineSeparator" value="lf"/>
+  </module>
 
   <module name="RegexpMultiline">
     <property name="format" value="\r\n"/>