Merge pull request #1425 from thatsIch/e-weaker-collection-type

Use weaker collection types
This commit is contained in:
thatsIch
2015-05-09 15:57:57 +02:00
18 changed files with 31 additions and 26 deletions
@@ -21,6 +21,7 @@ package appeng.crafting;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import com.google.common.base.Stopwatch;
@@ -47,7 +48,7 @@ public class CraftingJob implements Runnable, ICraftingJob
{
final IItemList<IAEItemStack> storage;
final HashSet<IAEItemStack> prophecies;
final Set<IAEItemStack> prophecies;
final MECraftingInventory original;
final World world;
final IItemList<IAEItemStack> crafting = AEApi.instance().storage().createItemList();