mirror of https://github.com/apache/maven.git
Fixing String.replace(..) problems in AbstractCompilerMojo.java
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@239674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a78c1c02d6
commit
b935ee1b58
|
@ -225,8 +225,8 @@ public abstract class AbstractCompilerMojo
|
|||
|
||||
if ( getLog().isDebugEnabled() )
|
||||
{
|
||||
getLog().debug( "Source directories: " + compileSourceRoots.toString().replace( ",", "\n" ) );
|
||||
getLog().debug( "Classpath: " + getClasspathElements().toString().replace( ",", "\n" ) );
|
||||
getLog().debug( "Source directories: " + compileSourceRoots.toString().replace( ',', '\n' ) );
|
||||
getLog().debug( "Classpath: " + getClasspathElements().toString().replace( ',', '\n' ) );
|
||||
getLog().debug( "Output directory: " + getOutputDirectory() );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue