Merge pull request #1420 from thatsIch/e-method-parameter-naming-conventions

Replaces all method parameter regarding their naming conventions
This commit is contained in:
thatsIch
2015-05-08 23:45:28 +02:00
76 changed files with 381 additions and 381 deletions
@@ -180,9 +180,9 @@ public class CellInventory implements ICellInventory
return false;
}
public static void addBasicBlackList( int itemID, int Meta )
public static void addBasicBlackList( int itemID, int meta )
{
BLACK_LIST.add( ( Meta << Platform.DEF_OFFSET ) | itemID );
BLACK_LIST.add( ( meta << Platform.DEF_OFFSET ) | itemID );
}
public static boolean isBlackListed( IAEItemStack input )