1
0
Fork 0

Remove emitting wipe events

pull/668/head
Jürgen Steitz 2017-03-04 12:30:18 +01:00
parent 1f90b4e393
commit ca225ff6a6
2 changed files with 0 additions and 5 deletions

View File

@ -42,9 +42,6 @@ abstract class AbstractAggregateIndex implements ReadableIndex
$index->on('definition-added', function () {
$this->emit('definition-added');
});
$index->on('wipe', function() {
$this->emit('wipe');
});
}
/**

View File

@ -218,7 +218,5 @@ class Index implements ReadableIndex, \Serializable
$this->references = [];
$this->complete = false;
$this->staticComplete = false;
$this->emit('wipe');
}
}