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
+2 -2
View File
@@ -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() );