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:
John Dennis Casey 2005-08-24 14:54:33 +00:00
parent a78c1c02d6
commit b935ee1b58
1 changed files with 2 additions and 2 deletions

View File

@ -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() );
}