From dc36e8097dbbdad0dd80bc314d14d7e6129dc3d2 Mon Sep 17 00:00:00 2001 From: Max Baumann Date: Tue, 15 Dec 2020 13:34:02 +0100 Subject: [PATCH] refactor: remove unused function --- src/config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/config.ts b/src/config.ts index f06ba3b0..f2f8f479 100644 --- a/src/config.ts +++ b/src/config.ts @@ -439,11 +439,6 @@ async function setupConfig() { Config.config = config; } -// Reset config -function resetConfig() { - Config.config = Config.defaults; -} - function convertJSON(): void { Object.keys(Config.localConfig).forEach(key => { Config.localConfig[key] = decodeStoredItem(key, Config.localConfig[key]);