Resolved some unchecked Types
This commit is contained in:
@@ -8,8 +8,8 @@ import appeng.api.storage.data.IAEStack;
|
||||
public class MergedPriorityList<T extends IAEStack<T>> implements IPartitionList<T>
|
||||
{
|
||||
|
||||
final List<IPartitionList<T>> positive = new ArrayList();
|
||||
final List<IPartitionList<T>> negative = new ArrayList();
|
||||
final List<IPartitionList<T>> positive = new ArrayList<IPartitionList<T>>();
|
||||
final List<IPartitionList<T>> negative = new ArrayList<IPartitionList<T>>();
|
||||
|
||||
public void addNewList(IPartitionList<T> list, boolean isWhitelist)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user