Skip to content

Commit

Permalink
[Continuation] Removed the FlowExecution:$activated field. (Issue pie…
Browse files Browse the repository at this point in the history
  • Loading branch information
iteman committed Sep 18, 2012
1 parent 0675c29 commit d870f8b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Piece/Flow/Continuation/FlowExecution.php
Expand Up @@ -50,7 +50,6 @@ class FlowExecution
{
protected $flowExecutions = array();
protected $activeFlowExecutionTicket;
protected $activated = false;
protected $exclusiveFlowExecutionTicketsByFlowID = array();
protected $exclusiveFlowIDsByFlowExecutionTicket = array();
protected $activeFlowID;
Expand Down Expand Up @@ -78,7 +77,6 @@ public function activateFlowExecution($flowExecutionTicket, $flowID)
{
$this->activeFlowExecutionTicket = $flowExecutionTicket;
$this->activeFlowID = $flowID;
$this->activated = true;
}

/**
Expand Down Expand Up @@ -112,7 +110,6 @@ public function removeFlowExecution($flowExecutionTicket, $flowID)
*/
public function inactivateFlowExecution()
{
$this->activated = false;
$this->activeFlowExecutionTicket = null;
$this->activeFlowID = null;
}
Expand Down

0 comments on commit d870f8b

Please sign in to comment.