Remove useless expr

This commit is contained in:
斟酌 鵬兄 2016-06-17 09:26:33 +08:00
parent cd2cce7e98
commit 4987009649

View File

@ -48,7 +48,7 @@ class CRequest
{ {
this.raw = req; this.raw = req;
this.uri = require('url').parse( req.url ); this.uri = require('url').parse( req.url );
this.cookie = new Cookie( req.headers.cookie, Http ) this.cookie = new Cookie( req.headers.cookie, Http );
} }
} }
@ -56,8 +56,6 @@ class Http
{ {
constructor( req, res ) constructor( req, res )
{ {
var _self = this;
// Simple Http Model // Simple Http Model
this.response = new CResponse( res, this ); this.response = new CResponse( res, this );
this.request = new CRequest( req, this ); this.request = new CRequest( req, this );