builder:CheckstyleWriter: use system's line separator
This commit is contained in:
parent
7a4ff3cc0d
commit
df4c951142
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue