Example #1
0
    /// <summary>
    /// Remove this action from the ActionPendingList
    /// </summary>
    public void remove()
    {
        if (pendingList == null)
        {
            return;
        }

        pendingList.removeAction(this);
        onRemove();
    }
Example #2
0
 public void removeCurrentAction()
 {
     actionList.removeAction(actionList.getActualAction());
 }