public void remove(Weight w) {
   notifyItemRemoved(weights.indexOf(w));
   w.delete();
   weights.remove(w);
 }