Bug 1822431 - Random fix to gHost.gcBytes r=jonco

Differential Revision: https://phabricator.services.mozilla.com/D172624
This commit is contained in:
Steve Fink 2023-03-15 17:45:27 +00:00
parent f1627faa66
commit 440d4e8811

View file

@ -277,7 +277,7 @@ var LatencyGraph = class extends Graph {
var MemoryGraph = class extends Graph {
constructor(ctx) {
super(ctx);
this.worstEver = this.bestEver = gHost.gcBytes();
this.worstEver = this.bestEver = gHost.gcBytes;
this.limit = Math.max(this.worstEver, gHost.gcAllocTrigger);
}