| Index: Tools/GardeningServer/scripts/model.js
|
| diff --git a/Tools/GardeningServer/scripts/model.js b/Tools/GardeningServer/scripts/model.js
|
| index cc2737033badee1590f739dc213b02129a14121c..71bb759940c418decb42ade7eb78e8463a0bbeca 100644
|
| --- a/Tools/GardeningServer/scripts/model.js
|
| +++ b/Tools/GardeningServer/scripts/model.js
|
| @@ -31,7 +31,6 @@ var kCommitLogLength = 50;
|
|
|
| model.state = {};
|
| model.state.failureAnalysisByTest = {};
|
| -model.state.expectationsUpdateQueue = [];
|
|
|
| function findAndMarkRevertedRevisions(commitDataList)
|
| {
|
| @@ -72,18 +71,6 @@ function heuristicallyNarrowRegressionRange(failureAnalysis)
|
| }
|
| }
|
|
|
| -model.queueForExpectationUpdate = function(failureInfo)
|
| -{
|
| - model.state.expectationsUpdateQueue.push(failureInfo);
|
| -};
|
| -
|
| -model.takeExpectationUpdateQueue = function()
|
| -{
|
| - var queue = model.state.expectationsUpdateQueue;
|
| - model.state.expectationsUpdateQueue = [];
|
| - return queue;
|
| -};
|
| -
|
| var g_commitIndex = {};
|
|
|
| model.updateRecentCommits = function()
|
|
|