Skip to content

Commit

Permalink
Minor, feedback from D3098.
Browse files Browse the repository at this point in the history
Auditors: btrahan
  • Loading branch information
epriestley committed Jul 30, 2012
1 parent fceabd4 commit 9fd2b37
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -25,21 +25,21 @@ final class PhabricatorFactUpdateIterator extends PhutilBufferedIterator {

private $cursor;
private $object;
private $start;
private $position;
private $ignoreUpdatesDuration = 15;

public function __construct(LiskDAO $object) {
$this->object = $object;
$this->start = '0:0';
$this->position = '0:0';
}

public function setPosition($position) {
$this->start = $position;
$this->position = $position;
return $this;
}

protected function didRewind() {
$this->cursor = $this->start;
$this->cursor = $this->position;
}

protected function getCursorFromObject($object) {
Expand Down

0 comments on commit 9fd2b37

Please sign in to comment.