From 45a52077a0b2e6247bb21f4b4877ed177a6d9e11 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 13 Jul 2022 10:33:55 -0400 Subject: [PATCH] Island: Remove disused ConfigService.init_config() --- monkey/monkey_island/cc/services/config.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/monkey/monkey_island/cc/services/config.py b/monkey/monkey_island/cc/services/config.py index 68fc46aac..240002e04 100644 --- a/monkey/monkey_island/cc/services/config.py +++ b/monkey/monkey_island/cc/services/config.py @@ -138,11 +138,6 @@ class ConfigService: ConfigService.set_config_value(PBA_LINUX_FILENAME_PATH, linux_filename) ConfigService.set_config_value(PBA_WINDOWS_FILENAME_PATH, windows_filename) - @staticmethod - def init_config(): - if ConfigService.get_config(should_decrypt=False) != {}: - return - @staticmethod def decrypt_config(config): ConfigService._encrypt_or_decrypt_config(config, True)