Example #1
0
 public void removeElementAt(int index) {
   hugeList.remove(displayList.get(index));
   displayList.remove(index);
 }
Example #2
0
 public boolean remove(Object o) {
   // Err.pr( "hugeList size is " + hugeList.size());
   hugeList.remove(o);
   return displayList.remove(o);
 }