From af2b9a251ac99f0cb6206f76335cfcd8bad79420 Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Fri, 6 Sep 2024 19:25:37 +0200 Subject: [PATCH] Remove stray unused FetchSession member MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added in 7511d5e201 – presumably it was a precursor to the getFetchOptions() method that I missed cleaning up before committing. --- fetch.js | 1 - 1 file changed, 1 deletion(-) diff --git a/fetch.js b/fetch.js index f3e0033..2b2a1e2 100644 --- a/fetch.js +++ b/fetch.js @@ -19,7 +19,6 @@ class FetchSession extends Session { constructor( apiUrl, defaultParams = {}, defaultOptions = {} ) { super( apiUrl, defaultParams, defaultOptions ); - this.fetchOptions = {}; } /**