From adab827250e4226dd4a0c20bdc1ff2fd9f1db5f5 Mon Sep 17 00:00:00 2001 From: Teddy Katz Date: Fri, 8 Sep 2017 17:50:35 -0400 Subject: [PATCH] Chore: remove unused eslint-disable comment (#9251) --- lib/code-path-analysis/code-path.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/code-path-analysis/code-path.js b/lib/code-path-analysis/code-path.js index 5fc5d22b01b..709a1111890 100644 --- a/lib/code-path-analysis/code-path.js +++ b/lib/code-path-analysis/code-path.js @@ -206,7 +206,7 @@ class CodePath { // Call the callback when the first time. if (!skippedSegment) { - callback.call(this, segment, controller); // eslint-disable-line callback-return + callback.call(this, segment, controller); if (segment === lastSegment) { controller.skip(); }