@CallSuper
 protected void onSave(Bundle paramBundle) {
   super.onSave(paramBundle);
   int i = this.requested.size() - 1;
   while (i >= 0) {
     int j = ((Integer) this.requested.get(i)).intValue();
     Subscription localSubscription =
         (Subscription) this.restartableSubscriptions.get(Integer.valueOf(j));
     if ((localSubscription != null) && (localSubscription.isUnsubscribed())) {
       this.requested.remove(i);
     }
     i -= 1;
   }
   paramBundle.putIntegerArrayList(REQUESTED_KEY, this.requested);
 }