1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00

EventEmitter constructor was not being called in many places. It did work due to the EventEmitter3 constructor being empty, but we can't rely on that.

This commit is contained in:
Simo Kinnunen 2015-06-02 13:26:43 +09:00
parent 181829b55c
commit d806d4fe54
4 changed files with 5 additions and 0 deletions

View file

@ -10,6 +10,7 @@ function TtlItem(value) {
}
function TtlSet(ttl) {
EventEmitter.call(this)
this.head = null
this.tail = null
this.mapping = Object.create(null)