void append(List<T> itemList, int count) { if (itemList.length == count) { totalItemList = itemList; return; } newItemList = itemList; }