From 153e541ee5c10db3c417244833faff5b971ce5dd Mon Sep 17 00:00:00 2001 From: "rniwa@webkit.org" Date: Thu, 11 Feb 2016 22:28:47 +0000 Subject: [PATCH] Build fix after r196440. * public/v3/models/test-group.js: (TestGroup.prototype.addBuildRequest): Clear the map instead of setting the property to null. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@196441 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Websites/perf.webkit.org/ChangeLog | 7 +++++++ Websites/perf.webkit.org/public/v3/models/test-group.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Websites/perf.webkit.org/ChangeLog b/Websites/perf.webkit.org/ChangeLog index bf2816e..1554682 100644 --- a/Websites/perf.webkit.org/ChangeLog +++ b/Websites/perf.webkit.org/ChangeLog @@ -1,3 +1,10 @@ +2016-02-11 Ryosuke Niwa + + Build fix after r196440. + + * public/v3/models/test-group.js: + (TestGroup.prototype.addBuildRequest): Clear the map instead of setting the property to null. + 2016-02-10 Ryosuke Niwa Perf dashboard should have UI to retry A/B testing diff --git a/Websites/perf.webkit.org/public/v3/models/test-group.js b/Websites/perf.webkit.org/public/v3/models/test-group.js index 8c53586..64051e0 100644 --- a/Websites/perf.webkit.org/public/v3/models/test-group.js +++ b/Websites/perf.webkit.org/public/v3/models/test-group.js @@ -24,7 +24,7 @@ class TestGroup extends LabeledObject { this._buildRequests.push(request); this._requestsAreInOrder = false; this._requestedRootSets = null; - this._rootSetToLabel = null; + this._rootSetToLabel.clear(); } repetitionCount() -- 1.8.3.1