*** empty log message ***

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-06-20 03:22:01 +00:00
parent 145e8ce7c2
commit e04ec7ea75
1 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@ import java.util.Iterator;
public class CompilationFailureResponse public class CompilationFailureResponse
extends FailureResponse extends FailureResponse
{ {
private String LS = System.getProperty( "line.separator" );
public CompilationFailureResponse( Object o ) public CompilationFailureResponse( Object o )
{ {
super( o ); super( o );
@ -32,7 +34,7 @@ public class CompilationFailureResponse
{ {
CompilerError compilerError = (CompilerError) it.next(); CompilerError compilerError = (CompilerError) it.next();
sb.append( compilerError ); sb.append( compilerError ).append( LS );
} }
return sb.toString(); return sb.toString();