Remove debugger statement from http_simple.js
authorRyan Dahl <ry@tinyclouds.org>
Fri, 7 Jan 2011 02:07:48 +0000 (18:07 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 7 Jan 2011 02:07:50 +0000 (18:07 -0800)
results in slow bench

benchmark/http_simple.js

index 6d6b0d3..8d66190 100644 (file)
@@ -43,7 +43,6 @@ var server = http.createServer(function (req, res) {
 
   if (command == "bytes") {
     var n = parseInt(arg, 10)
-    debugger;
     if (n <= 0)
       throw "bytes called with n <= 0"
     if (stored[n] === undefined) {