Resolved some unchecked Types
This commit is contained in:
@@ -500,7 +500,7 @@ public class Platform
|
||||
AELog.error( t );
|
||||
}
|
||||
|
||||
return new ArrayList();
|
||||
return new ArrayList<NBTBase>();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1446,7 +1446,7 @@ public class Platform
|
||||
static public <T extends IAEStack<T>> void postListChanges(IItemList<T> before, IItemList<T> after, IMEMonitorHandlerReceiver<T> meMonitorPassthrough,
|
||||
BaseActionSource source)
|
||||
{
|
||||
LinkedList<T> changes = new LinkedList();
|
||||
LinkedList<T> changes = new LinkedList<T>();
|
||||
|
||||
for (T is : before)
|
||||
is.setStackSize( -is.getStackSize() );
|
||||
|
||||
Reference in New Issue
Block a user