diff --git a/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IIngredientHandler.java b/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IIngredientHandler.java index b247bb52d..714bc6dfe 100755 --- a/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IIngredientHandler.java +++ b/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IIngredientHandler.java @@ -3,7 +3,7 @@ package com.jaquadro.minecraft.storagedrawers.api.registry; import net.minecraft.item.ItemStack; /** - * Ingredient handlers are used to getOrLoad ItemStacks from ingredients in custom IRecipe implementations. If you have + * Ingredient handlers are used to get ItemStacks from ingredients in custom IRecipe implementations. If you have * registered an IRecipeHandler that returns lists of objects that aren't ItemStacks, then you will need to * implement an ingredient handler for those objects. */ diff --git a/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IRecipeHandler.java b/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IRecipeHandler.java index 17cbf3afc..9cb3e8b9e 100755 --- a/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IRecipeHandler.java +++ b/src/main/java/com/jaquadro/minecraft/storagedrawers/api/registry/IRecipeHandler.java @@ -12,7 +12,7 @@ public interface IRecipeHandler { /** * Get the recipe ingredient list as an array of objects (usually used for shaped recipes). * If your array does not contain ItemStack objects, you will need to register an {@link IIngredientHandler} to - * getOrLoad an ItemStack from them. + * get an ItemStack from them. *
* If you would prefer to return a List, return null in this method and implement {@link #getInputAsList}. * @@ -24,7 +24,7 @@ public interface IRecipeHandler { /** * Get the recipe ingredient list as a list of objects (usually used for shapeless recipes). * If your list does not contain ItemStack objects, you will need to register an {@link IIngredientHandler} to - * getOrLoad an ItemStack from them. + * get an ItemStack from them. *
* If you would prefer to return an array, return null in this method and implement {@link #getInputAsArray}. * diff --git a/src/main/java/refinedstorage/api/network/INetworkSlave.java b/src/main/java/refinedstorage/api/network/INetworkSlave.java index 8a62e601b..f8bdd53a2 100755 --- a/src/main/java/refinedstorage/api/network/INetworkSlave.java +++ b/src/main/java/refinedstorage/api/network/INetworkSlave.java @@ -6,7 +6,7 @@ import net.minecraft.world.World; /** * Represents a slave or machine in the storage network. * - * Make sure you implement {@link Object#hashCode()} or the slave will not getOrLoad properly removed or added by the storage master. + * Make sure you implement {@link Object#hashCode()} or the slave will not get properly removed or added by the storage master. * Typically the hash code from {@link INetworkSlave#getPosition()} is used. */ public interface INetworkSlave { @@ -65,7 +65,7 @@ public interface INetworkSlave { boolean isConnected(); /** - * @return If {@link INetworkSlave#canUpdate()} can getOrLoad called. Typically checks for connection and redstone mode. + * @return If {@link INetworkSlave#canUpdate()} can get called. Typically checks for connection and redstone mode. */ boolean canUpdate(); diff --git a/src/main/java/refinedstorage/api/network/NetworkMaster.java b/src/main/java/refinedstorage/api/network/NetworkMaster.java index 654902840..47a2dde59 100755 --- a/src/main/java/refinedstorage/api/network/NetworkMaster.java +++ b/src/main/java/refinedstorage/api/network/NetworkMaster.java @@ -450,7 +450,7 @@ public class NetworkMaster { if (RefinedStorageUtils.compareStackNoQuantity(stack, otherStack)) { // We copy here so we don't modify the quantity of the ItemStack IStorage uses. - // We re-getOrLoad the ItemStack because the stack may change from a previous iteration in this loop + // We re-get the ItemStack because the stack may change from a previous iteration in this loop ItemStack newStack = items.get(i).copy(); newStack.stackSize += otherStack.stackSize; items.set(i, newStack);