Merge pull request #218 from thatsIch/localvars

Remove redundant local variables
This commit is contained in:
Chris
2014-10-01 20:23:56 -07:00
21 changed files with 58 additions and 88 deletions
@@ -115,9 +115,8 @@ public class RenderBlockCraftingCPU extends BaseBlockRender
double a = 0.0 / 16.0;
double o = 16.0 / 16.0;
renderer.setRenderBounds( a, a, a, o, o, o );
boolean out = renderer.renderStandardBlock( blk, x, y, z );
return out;
return renderer.renderStandardBlock( blk, x, y, z );
}
}