All parameters on one line (for now)

Easier picking of 1.7 changes
This commit is contained in:
yueh
2016-01-01 02:02:05 +01:00
parent e08ab38c52
commit f84b9a7e1d
147 changed files with 840 additions and 1506 deletions
@@ -135,15 +135,13 @@ public class WrapperInventoryRange implements IInventory
}
@Override
public void openInventory(
final EntityPlayer player )
public void openInventory( final EntityPlayer player )
{
this.src.openInventory( player );
}
@Override
public void closeInventory(
final EntityPlayer player )
public void closeInventory( final EntityPlayer player )
{
this.src.closeInventory( player );
}
@@ -155,8 +153,7 @@ public class WrapperInventoryRange implements IInventory
}
@Override
public int getField(
final int id )
public int getField( final int id )
{
return this.src.getField( id );
}
@@ -174,9 +171,7 @@ public class WrapperInventoryRange implements IInventory
}
@Override
public void setField(
final int id,
final int value )
public void setField( final int id, final int value )
{
this.src.setField( id, value );
}