builder:CheckstyleWriter: use system's line separator

This commit is contained in:
Paul Campbell 2017-02-08 19:40:53 +00:00
parent 7a4ff3cc0d
commit df4c951142

View file

@ -50,7 +50,7 @@ import java.util.stream.Stream;
@RequiredArgsConstructor
class CheckstyleWriter implements CommandLineRunner {
private static final String NEWLINE = "\n";
private static final String NEWLINE = System.getProperty("line.separator");
private final OutputProperties outputProperties;