remove trailing whitespaces

This commit is contained in:
yueh
2015-02-03 12:04:13 +01:00
parent ef3cb0a455
commit b18addbf37
303 changed files with 1526 additions and 1526 deletions
+3 -3
View File
@@ -163,12 +163,12 @@ public class Ingredient implements IIngredient
/*
* Object o = Item.itemRegistry.getObject( nameSpace + ":" + itemName ); if ( o instanceof Item ) return new
* ItemStack( (Item) o, qty, meta );
*
*
* if ( o instanceof Block ) return new ItemStack( (Block) o, qty, meta );
*
*
* o = Item.itemRegistry.getObject( nameSpace + ":item." + itemName ); if ( o instanceof Item ) return new
* ItemStack( (Item) o, qty, meta );
*
*
* o = Block.blockRegistry.getObject( nameSpace + ":tile." + itemName ); if ( o instanceof Block && (!(o
* instanceof BlockAir)) ) return new ItemStack( (Block) o, qty, meta );
*/
+1 -1
View File
@@ -37,7 +37,7 @@ public class RecipeData
public boolean crash = true;
public boolean exceptions = true;
public boolean errorOnMissing = true;
public final Set<String> knownItem = new HashSet<String>();
}
@@ -274,7 +274,7 @@ public class ShapedRecipe implements IRecipe, IRecipeBakeable
/**
* Returns the input for this recipe, any mod accessing this value should never manipulate the values in this array
* as it will effect the recipe itself.
*
*
* @return The recipes input vales.
*/
public Object[] getInput()
@@ -149,7 +149,7 @@ public class ShapelessRecipe implements IRecipe, IRecipeBakeable
/**
* Returns the input for this recipe, any mod accessing this value should never manipulate the values in this array
* as it will effect the recipe itself.
*
*
* @return The recipes input vales.
*/
public ArrayList<Object> getInput()
@@ -72,5 +72,5 @@ public class Grind implements ICraftHandler, IWebsiteSerializer
h.getName(this.pro_input)+ '\n' +
h.getName(this.pro_output[0]);
}
}
@@ -66,7 +66,7 @@ public class HCCrusher implements ICraftHandler, IWebsiteSerializer
NBTTagCompound toRegister = new NBTTagCompound();
ItemStack endStack = this.pro_output[0].getItemStack();
NBTTagCompound itemFrom = new NBTTagCompound();
NBTTagCompound itemTo = new NBTTagCompound();
@@ -76,7 +76,7 @@ public class HCCrusher implements ICraftHandler, IWebsiteSerializer
toRegister.setTag("itemFrom", itemFrom);
toRegister.setTag("itemTo", itemTo);
toRegister.setFloat("pressureRatio", 1.0F);
FMLInterModComms.sendMessage("HydCraft", "registerCrushingRecipe", toRegister);
}
catch (java.lang.RuntimeException err)
@@ -132,7 +132,7 @@ public class Shaped implements ICraftHandler, IWebsiteSerializer
}
}
}
return Platform.isSameItemPrecise( this.output.getItemStack(), reqOutput );
}
@@ -26,7 +26,7 @@ public interface IOreListener
/**
* Called with various items registered in the dictionary.
* AppEng.oreDictionary.observe(...) to register them.
*
*
* @param name name of ore
* @param item item with name
*/
@@ -41,7 +41,7 @@ public class OreDictionaryHandler
/**
* Just limit what items are sent to the final listeners, I got sick of strange items showing up...
*
*
* @param name name about cared item
* @return true if it should care
*/
@@ -69,7 +69,7 @@ public class OreDictionaryHandler
/**
* Adds a new IOreListener and immediately notifies it of any previous ores, any ores added latter will be added at
* that point.
*
*
* @param n to be added ore listener
*/
public void observe(IOreListener n)