Skip to content

Commit

Permalink
remove empty comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Haering committed Dec 20, 2011
1 parent 75ec650 commit 00f3167
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/util/buildbot.js
Expand Up @@ -87,7 +87,7 @@ BuildBot.prototype._findOldestBuild = function(builds, revision) {

// Get numbers of builds from oldest to newest
numbers = Object.keys(builds).map(function(numstr) {
return parseInt(numstr);
return parseInt(numstr, 10);
}).sort(function(a, b) {
return a - b;
});
Expand Down Expand Up @@ -159,9 +159,6 @@ BuildBot.prototype.getRevision = function(builder, revision, callback) {
};


/**
*
*/
BuildBot.prototype.ensureRevisionBuilt = function(builder, revision, callback) {
var self = this,
attempts = 0;
Expand Down

0 comments on commit 00f3167

Please sign in to comment.