From 75233d974a30af6e3b8ab38a73e5ede67172fc1c Mon Sep 17 00:00:00 2001 From: Vern Brandl Date: Wed, 17 Apr 2019 11:33:36 +0800 Subject: [PATCH] chore: Consider removing this return statement; it will be ignored. (#1322) --- lib/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request.js b/lib/request.js index fd4c976ad..6e82c47fd 100644 --- a/lib/request.js +++ b/lib/request.js @@ -504,7 +504,7 @@ module.exports = { * @api private */ set accept(obj) { - return this._accept = obj; + this._accept = obj; }, /**