Skip to content

Commit

Permalink
use platform-specific EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredstehler committed Jul 12, 2023
1 parent 261dba5 commit d03abea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ protected CompilerResult compileOutOfProcess( CompilerConfiguration config, Stri

if ( log.isDebugEnabled() )
{
log.debug( "Compiler output:\n{}", out.getOutput() );
log.debug( "Compiler output:{}{}", EOL, out.getOutput() );
}

messages = parseModernStream( returnCode, new BufferedReader( new StringReader( out.getOutput() ) ) );
Expand Down Expand Up @@ -706,7 +706,7 @@ private CompilerResult compileInProcess0( Class<?> javacClass, String[] args )

if ( log.isDebugEnabled() )
{
log.debug( "Compiler output:\n{}", out.toString() );
log.debug( "Compiler output:{}{}", EOL, out.toString() );
}

messages = parseModernStream( ok, new BufferedReader( new StringReader( out.toString() ) ) );
Expand Down

0 comments on commit d03abea

Please sign in to comment.