Code cleanup - Remove useless .toString()

This commit is contained in:
Arnaud Héritier 2013-06-11 21:52:36 +02:00
parent a2897f86b3
commit c747fbe4c9
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public String render( String indentation )
//
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();