From dfe8e95be4df42f86b393f060ca5a63dcc17dae1 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Sat, 5 Apr 2014 19:15:14 -0700 Subject: [PATCH] remove ctx.inspect() implementation. Closes #164 obscures user-defned properties. ideally we fix it so .req / .res are not so verbose but meh for now --- lib/context.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lib/context.js b/lib/context.js index a66d7e5..8d7dfb9 100644 --- a/lib/context.js +++ b/lib/context.js @@ -13,20 +13,6 @@ var http = require('http'); var proto = module.exports = { - /** - * Inspect implementation. - * - * @return {Object} - * @api public - */ - - inspect: function(){ - return { - request: this.request, - response: this.response - } - }, - /** * Return JSON representation. *