Replaces all local variables regarding their naming conventions

This commit is contained in:
thatsIch
2015-05-08 23:34:24 +02:00
parent d8ac614a17
commit 513292cd08
18 changed files with 132 additions and 132 deletions
@@ -46,9 +46,9 @@ public class GroupIngredient implements IIngredient
{
this.name = myName;
for( IIngredient I : ingredients )
for( IIngredient ingredient : ingredients )
{
if( I.isAir() )
if( ingredient.isAir() )
{
throw new RecipeError( "Cannot include air in a group." );
}