Exemplo n.º 1
0
 public void remove() {
   if (iPrimary != null) {
     iPrimary.remove();
   } else {
     if (iNext != null && isAllowFreeTime() == iNext.isAllowFreeTime()) {
       replaceWith(iNext);
       iNext.remove();
     } else {
       replaceWith(null);
     }
   }
 }