Skip to content

Commit 0e49033

Browse files
committed
clean last commit
1 parent 0ae5ea2 commit 0e49033

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/mongodb/cursor.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,7 @@ Cursor.prototype.fetchAllRecords = function(callback) {
179179

180180
if(self.state == Cursor.INIT) {
181181
var queryCommand = self.generateQueryCommand();
182-
//GLOBAL.time = Date.now();
183-
//inspect('execute'+(Date.now()-time));
184182
self.db.executeCommand(queryCommand, function(err, result) {
185-
//inspect('executed'+(Date.now()-time));
186183
var numberReturned = result.numberReturned;
187184
// Check if we need to fetch the count
188185
if(self.limitValue > 0 && self.limitValue > numberReturned) {

0 commit comments

Comments
 (0)