GitHub user toyboxman opened a pull request:
https://github.com/apache/incubator-griffin/pull/332
fix a bad practice
Format string should use %n rather than \n
In format strings, it is generally preferable better to use %n,
which will produce the platform-specific line separator.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/toyboxman/incubator-griffin bugs
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/incubator-griffin/pull/332.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #332
----
commit bd665dbdfed28c175bf7a24991ee050876d2178e
Author: Eugene <toyboxman0001@...>
Date: 2018-07-02T08:22:46Z
fix a bad practice
Format string should use %n rather than \n
In format strings, it is generally preferable better to use %n,
which will produce the platform-specific line separator.
----
---