diff --git a/lib/document_handler.js b/lib/document_handler.js index 9ede846..84771d1 100644 --- a/lib/document_handler.js +++ b/lib/document_handler.js @@ -36,7 +36,6 @@ DocumentHandler.prototype.handlePost = function(request, response) { }); request.on('error', function(error) { // TODO handle error - // TODO finish all TODOs }); }; diff --git a/server.js b/server.js index 58f45d2..cbc2d06 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,6 @@ winston.remove(winston.transports.Console); winston.add(winston.transports.Console, { colorize: true, level: 'verbose' }); // TODO preparse static instead of using exists -// TODO only parse url once for static files // Set the server up http.createServer(function(request, response) {