/**
  * Public static constructor that creates fragment and passes a bundle with data into it when
  * adapter is created
  */
 public static RemoveListDialogFragment newInstance(ShoppingList shoppingList) {
   RemoveListDialogFragment removeListDialogFragment = new RemoveListDialogFragment();
   Bundle bundle = new Bundle();
   removeListDialogFragment.setArguments(bundle);
   return removeListDialogFragment;
 }