From f9e25b5a339b5ed4f5efc2d26a3a1b523d110e5b Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 17 May 2015 23:52:15 +0200 Subject: [PATCH] Lower case method name --- src/main/java/appeng/recipes/Ingredient.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/appeng/recipes/Ingredient.java b/src/main/java/appeng/recipes/Ingredient.java index 7bee0b85e..65665673d 100644 --- a/src/main/java/appeng/recipes/Ingredient.java +++ b/src/main/java/appeng/recipes/Ingredient.java @@ -1,6 +1,6 @@ /* * This file is part of Applied Energistics 2. - * Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved. + * Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved. * * Applied Energistics 2 is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -167,7 +167,7 @@ public class Ingredient implements IIngredient Item it = Item.getItemFromBlock( blk ); if( it != null ) { - return this.MakeItemStack( it, this.qty, this.meta, this.nbt ); + return this.makeItemStack( it, this.qty, this.meta, this.nbt ); } } @@ -179,7 +179,7 @@ public class Ingredient implements IIngredient if( it != null ) { - return this.MakeItemStack( it, this.qty, this.meta, this.nbt ); + return this.makeItemStack( it, this.qty, this.meta, this.nbt ); } /* @@ -198,7 +198,7 @@ public class Ingredient implements IIngredient throw new MissingIngredientError( "Unable to find item: " + this.toString() ); } - private ItemStack MakeItemStack( Item it, int quantity, int damageValue, NBTTagCompound compound ) + private ItemStack makeItemStack( Item it, int quantity, int damageValue, NBTTagCompound compound ) { ItemStack is = new ItemStack( it, quantity, damageValue ); is.setTagCompound( compound );