summaryrefslogtreecommitdiff
path: root/backend/decky_loader/utilities.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/decky_loader/utilities.py')
-rw-r--r--backend/decky_loader/utilities.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/backend/decky_loader/utilities.py b/backend/decky_loader/utilities.py
index 4dbf34f7..f7f22517 100644
--- a/backend/decky_loader/utilities.py
+++ b/backend/decky_loader/utilities.py
@@ -40,21 +40,12 @@ class Utilities:
self.legacy_util_methods: Dict[str, Callable[..., Coroutine[Any, Any, Any]]] = {
"ping": self.ping,
"http_request": self.http_request_legacy,
- "install_plugin": self.install_plugin,
- "install_plugins": self.install_plugins,
- "cancel_plugin_install": self.cancel_plugin_install,
- "confirm_plugin_install": self.confirm_plugin_install,
- "uninstall_plugin": self.uninstall_plugin,
"execute_in_tab": self.execute_in_tab,
"inject_css_into_tab": self.inject_css_into_tab,
"remove_css_from_tab": self.remove_css_from_tab,
- "allow_remote_debugging": self.allow_remote_debugging,
- "disallow_remote_debugging": self.disallow_remote_debugging,
"set_setting": self.set_setting,
"get_setting": self.get_setting,
"filepicker_ls": self.filepicker_ls,
- "disable_rdt": self.disable_rdt,
- "enable_rdt": self.enable_rdt,
"get_tab_id": self.get_tab_id,
"get_user_info": self.get_user_info,
}