Single character string concatentation

This commit is contained in:
thatsIch 2015-03-26 11:23:22 +01:00
parent d81eb1fe2d
commit 88310cf04b

View file

@ -198,7 +198,7 @@ public class OreHelper
StringBuilder builder = new StringBuilder();
builder.append( "ItemRef [ref=" ).append( this.ref.getUnlocalizedName() )
.append( ", damage=" ).append( this.damage ).append( ", hash=" )
.append( this.hash ).append( "]" );
.append( this.hash ).append( ']' );
return builder.toString();
}