mirror of https://github.com/apache/maven.git
*** 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:
parent
145e8ce7c2
commit
e04ec7ea75
|
@ -12,6 +12,8 @@ import java.util.Iterator;
|
|||
public class CompilationFailureResponse
|
||||
extends FailureResponse
|
||||
{
|
||||
private String LS = System.getProperty( "line.separator" );
|
||||
|
||||
public CompilationFailureResponse( Object o )
|
||||
{
|
||||
super( o );
|
||||
|
@ -32,7 +34,7 @@ public class CompilationFailureResponse
|
|||
{
|
||||
CompilerError compilerError = (CompilerError) it.next();
|
||||
|
||||
sb.append( compilerError );
|
||||
sb.append( compilerError ).append( LS );
|
||||
}
|
||||
|
||||
return sb.toString();
|
||||
|
|
Loading…
Reference in New Issue