Remove console.log
This commit is contained in:
parent
73e9a9793d
commit
4d3ebcac17
1 changed files with 0 additions and 2 deletions
|
@ -247,11 +247,9 @@ export class TimelineEventStore {
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
for(let i = 0; i < results.length; ++i) {
|
for(let i = 0; i < results.length; ++i) {
|
||||||
console.log(i, eventIds[i], results[i]);
|
|
||||||
if (!results[i]) continue;
|
if (!results[i]) continue;
|
||||||
occuringEventIds.push(eventIds[i]);
|
occuringEventIds.push(eventIds[i]);
|
||||||
}
|
}
|
||||||
console.log(occuringEventIds);
|
|
||||||
return occuringEventIds;
|
return occuringEventIds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue