Resolved some unchecked Types

This commit is contained in:
thatsIch
2014-09-28 22:20:14 +02:00
parent a745e00115
commit f1ffbf08a2
109 changed files with 206 additions and 206 deletions
@@ -51,7 +51,7 @@ public class CraftingJob implements Runnable, ICraftingJob
{
world = wrapWorld( w );
storage = AEApi.instance().storage().createItemList();
prophecies = new HashSet();
prophecies = new HashSet<IAEItemStack>();
original = null;
availableCheck = null;
}
@@ -71,7 +71,7 @@ public class CraftingJob implements Runnable, ICraftingJob
world = wrapWorld( w );
output = what.copy();
storage = AEApi.instance().storage().createItemList();
prophecies = new HashSet();
prophecies = new HashSet<IAEItemStack>();
this.actionSrc = actionSrc;
this.callback = callback;
@@ -129,7 +129,7 @@ public class CraftingJob implements Runnable, ICraftingJob
public long times = 0;
}
HashMap<String, twoIntegers> opsAndMultiplier = new HashMap();
HashMap<String, twoIntegers> opsAndMultiplier = new HashMap<String, twoIntegers>();
@Override
public void run()