From c26d00f451949306f708aa78d1e9f12b9eb6ff4b Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Sun, 14 Sep 2025 04:10:51 +0900 Subject: [PATCH] refactor: remove redundant assignment (#7029) --- lib/core/Axios.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/core/Axios.js b/lib/core/Axios.js index 67ba0e7..a564927 100644 --- a/lib/core/Axios.js +++ b/lib/core/Axios.js @@ -170,8 +170,6 @@ class Axios { let newConfig = config; - i = 0; - while (i < len) { const onFulfilled = requestInterceptorChain[i++]; const onRejected = requestInterceptorChain[i++];