Example #1
0
 public Object remove(int index) {
   ensureInitFastListCache();
   _cache.remove(index);
   return _persistentList.remove(index);
 }
Example #2
0
 public boolean remove(Object o) {
   ensureInitFastListCache();
   _cache.remove(o);
   return _persistentList.remove(o);
 }