Remove the enable argument from the StatTimer constructor

This argument is a left-over from older API code, where we unconditionally initialized `StatTimer` instances for every page. For quite some time that's only been done when `pdfBug` is set, hence it seems unnecessary to keep this functionality.
This commit is contained in:
Jonas Jenwald 2019-10-23 13:33:01 +02:00
parent 9fc40f8b84
commit 8e5d3836d6

View File

@ -380,16 +380,12 @@ function getFilenameFromUrl(url) {
}
class StatTimer {
constructor(enable = true) {
this.enabled = !!enable;
constructor() {
this.started = Object.create(null);
this.times = [];
}
time(name) {
if (!this.enabled) {
return;
}
if (name in this.started) {
warn('Timer is already running for ' + name);
}
@ -397,9 +393,6 @@ class StatTimer {
}
timeEnd(name) {
if (!this.enabled) {
return;
}
if (!(name in this.started)) {
warn('Timer has not been started for ' + name);
}