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
@@ -106,16 +106,14 @@ public class AdaptorPlayerInventory 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 );
}
@@ -133,16 +131,13 @@ public class AdaptorPlayerInventory implements IInventory
}
@Override
public int getField(
final int id )
public int getField( final int id )
{
return this.src.getField( id );
}
@Override
public void setField(
final int id,
final int value )
public void setField( final int id, final int value )
{
this.src.setField( id, value );
}
@@ -208,14 +208,12 @@ public class WrapperChainedInventory implements IInventory
}
@Override
public void openInventory(
final EntityPlayer player )
public void openInventory( final EntityPlayer player )
{
}
@Override
public void closeInventory(
final EntityPlayer player )
public void closeInventory( final EntityPlayer player )
{
}
@@ -245,16 +243,13 @@ public class WrapperChainedInventory implements IInventory
}
@Override
public int getField(
final int id )
public int getField( final int id )
{
return 0;
}
@Override
public void setField(
final int id,
final int value )
public void setField( final int id, final int value )
{
}
@@ -118,15 +118,13 @@ public class WrapperInvSlot
}
@Override
public void openInventory(
final EntityPlayer player )
public void openInventory( final EntityPlayer player )
{
this.inv.openInventory( player );
}
@Override
public void closeInventory(
final EntityPlayer player )
public void closeInventory( final EntityPlayer player )
{
this.inv.closeInventory( player );
}
@@ -138,8 +136,7 @@ public class WrapperInvSlot
}
@Override
public int getField(
final int id )
public int getField( final int id )
{
return this.inv.getField( id );
}
@@ -163,9 +160,7 @@ public class WrapperInvSlot
}
@Override
public void setField(
final int id,
final int value )
public void setField( final int id, final int value )
{
this.inv.setField( id, value );
}
@@ -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 );
}