Resolved some unchecked Types
This commit is contained in:
@@ -30,7 +30,7 @@ public class CraftingTreeNode
|
||||
private IAEItemStack what;
|
||||
|
||||
// what are the crafting patterns for this?
|
||||
private ArrayList<CraftingTreeProcess> nodes = new ArrayList();
|
||||
private ArrayList<CraftingTreeProcess> nodes = new ArrayList<CraftingTreeProcess>();
|
||||
|
||||
boolean canEmit = false;
|
||||
boolean cannotUse = false;
|
||||
@@ -95,7 +95,7 @@ public class CraftingTreeNode
|
||||
{
|
||||
job.handlePausing();
|
||||
|
||||
List<IAEItemStack> thingsUsed = new LinkedList();
|
||||
List<IAEItemStack> thingsUsed = new LinkedList<IAEItemStack>();
|
||||
|
||||
what.setStackSize( l );
|
||||
if ( slot >= 0 && parent != null && parent.details.isCraftable() )
|
||||
|
||||
Reference in New Issue
Block a user