Code review fixes

This commit is contained in:
David Greenspan
2015-03-05 11:43:06 -08:00
parent 9869245b8e
commit a84f89c007
2 changed files with 0 additions and 4 deletions

View File

@@ -62,7 +62,6 @@ CS.PackagesResolver._resolveWithInput = function (input, _nudge) {
var result = solver.getSolution();
// if we're here, no conflicts were found (or an error would have
// been thrown)
//XXX console.log(solver.getCostReport());
return result;
});
};

View File

@@ -214,9 +214,6 @@ CS.VersionPricer.prototype.categorizeVersions = function (versions, pivot) {
higherMajor: versions.slice(higherMajorIndex) };
};
var zeroFunc = function () { return 0; };
var oneFunc = function () { return 1; };
// Use a combination of calls to scanVersions with different modes in order
// to generate costs for versions relative to a "previous solution" version
// (called the "pivot" here).