Merge pull request #216 from thatsIch/stringbuilder

Use StringBuilder to its fullest
This commit is contained in:
FireBall1725
2014-10-02 09:00:10 -04:00
3 changed files with 20 additions and 6 deletions
@@ -37,7 +37,7 @@ public class ShapelessRecipe implements IRecipe, IRecipeBakeable
StringBuilder ret = new StringBuilder( "Invalid shapeless ore recipe: " );
for (Object tmp : recipe)
{
ret.append( tmp + ", " );
ret.append( tmp ).append( ", " );
}
ret.append( output );
throw new RuntimeException( ret.toString() );