Multiple variables in one declaration

This commit is contained in:
thatsIch
2015-03-26 12:13:34 +01:00
parent b609b08f98
commit 81c32d5181
26 changed files with 103 additions and 37 deletions
@@ -45,7 +45,9 @@ public class CableRenderHelper
private void setSide(ForgeDirection s)
{
ForgeDirection ax, ay, az;
ForgeDirection ax;
ForgeDirection ay;
ForgeDirection az;
switch (s)
{
@@ -205,7 +207,9 @@ public class CableRenderHelper
IPart part = cableBusContainer.getPart( s );
if ( part != null )
{
ForgeDirection ax, ay, az;
ForgeDirection ax;
ForgeDirection ay;
ForgeDirection az;
switch (s)
{