comments: remove vague TODOs

closes #576
This commit is contained in:
jongleberry 2016-03-01 15:01:32 -08:00
parent 999c2cd85f
commit 572b4599f0
3 changed files with 1 additions and 4 deletions

View file

@ -304,7 +304,6 @@ module.exports = {
*/ */
get socket() { get socket() {
// TODO: TLS
return this.req.socket; return this.req.socket;
}, },

View file

@ -33,7 +33,6 @@ module.exports = {
*/ */
get socket() { get socket() {
// TODO: TLS
return this.ctx.req.socket; return this.ctx.req.socket;
}, },
@ -45,7 +44,6 @@ module.exports = {
*/ */
get header() { get header() {
// TODO: wtf
return this.res._headers || {}; return this.res._headers || {};
}, },

View file

@ -55,7 +55,7 @@ describe('ctx.type', function(){
describe('with no Content-Type', function(){ describe('with no Content-Type', function(){
it('should return ""', function(){ it('should return ""', function(){
var ctx = context(); var ctx = context();
// TODO: this is lame // this is lame
assert('' === ctx.type); assert('' === ctx.type);
}) })
}) })