Remove useless expr
This commit is contained in:
		@@ -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 );
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user