mirror of https://github.com/apache/maven.git
Code cleanup - Remove useless .toString()
This commit is contained in:
parent
a2897f86b3
commit
c747fbe4c9
|
@ -85,7 +85,7 @@ public class ModelValidationResult
|
|||
//
|
||||
for ( int i = 0; i < messages.size(); i++ )
|
||||
{
|
||||
message.append( indentation + "[" + i + "] " + messages.get( i ).toString() + NEWLINE );
|
||||
message.append( indentation + "[" + i + "] " + messages.get( i ) + NEWLINE );
|
||||
}
|
||||
|
||||
return message.toString();
|
||||
|
|
Loading…
Reference in New Issue