Merge pull request #157 from thatsIch/Spelling

Spelling
This commit is contained in:
Chris
2014-09-28 10:09:39 -07:00
220 changed files with 1644 additions and 1665 deletions
@@ -139,15 +139,15 @@ public class CraftingJob implements Runnable, ICraftingJob
try
{
TickHandler.instance.registerCraftingSimulation( world, this );
handlepausing();
handlePausing();
Stopwatch timer = Stopwatch.createStarted();
MECraftingInventory meci = new MECraftingInventory( original, true, false, true );
meci.ignore( output );
MECraftingInventory craftingInventory = new MECraftingInventory( original, true, false, true );
craftingInventory.ignore( output );
availableCheck = new MECraftingInventory( original, false, false, false );
tree.request( meci, output.getStackSize(), actionSrc );
tree.request( craftingInventory, output.getStackSize(), actionSrc );
tree.dive( this );
for (String s : opsAndMultiplier.keySet())
@@ -158,7 +158,7 @@ public class CraftingJob implements Runnable, ICraftingJob
AELog.crafting( "------------- " + getByteTotal() + "b real" + timer.elapsed( TimeUnit.MILLISECONDS ) + "ms" );
// if ( mode == Actionable.MODULATE )
// meci.moveItemsToStorage( storage );
// craftingInventory.moveItemsToStorage( storage );
}
catch (CraftBranchFailure e)
{
@@ -167,13 +167,13 @@ public class CraftingJob implements Runnable, ICraftingJob
try
{
Stopwatch timer = Stopwatch.createStarted();
MECraftingInventory meci = new MECraftingInventory( original, true, false, true );
meci.ignore( output );
MECraftingInventory craftingInventory = new MECraftingInventory( original, true, false, true );
craftingInventory.ignore( output );
availableCheck = new MECraftingInventory( original, false, false, false );
tree.setSimulate();
tree.request( meci, output.getStackSize(), actionSrc );
tree.request( craftingInventory, output.getStackSize(), actionSrc );
tree.dive( this );
for (String s : opsAndMultiplier.keySet())
@@ -300,7 +300,7 @@ public class CraftingJob implements Runnable, ICraftingJob
private int incTime = Integer.MAX_VALUE;
public void handlepausing() throws InterruptedException
public void handlePausing() throws InterruptedException
{
if ( incTime++ > 100 )
{