Skip to content

Commit 2f68123

Browse files
committed
get rid of my comments
(sorry james, i didn't get so much sleep lately)
1 parent 0486fe0 commit 2f68123

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tools/server.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ var http = require('http'),
1818
http.createServer(function (request, response) {
1919
var uri = url.parse(request.url).pathname,
2020
filename = path.join(__dirname, '..', uri);
21-
/*
22-
if(/favicon.ico$/.test(uri)) {
23-
response.writeHead(204, {});
24-
return response.end();
25-
}
26-
*/
2721

2822
fs.exists(filename, function (exists) {
2923
if (!exists) {

0 commit comments

Comments
 (0)