From 4547b010d40af0369ecf8b5809a9b6f927663290 Mon Sep 17 00:00:00 2001 From: Hydroxycarbamide Date: Sun, 11 Sep 2022 23:41:31 +0200 Subject: [PATCH] Remove warns --- src-tauri/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index ab357a4..007cf06 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -126,19 +126,19 @@ fn download_resources( integrations_url: String, ) -> Result<(), io::Error> { let revanced_cli_filename = "revanced_cli.jar"; - let cli_download_response = match download_in_dir(tmp_dir.path(), cli_url.as_str(), revanced_cli_filename) { + let _cli_download_response = match download_in_dir(tmp_dir.path(), cli_url.as_str(), revanced_cli_filename) { Ok(response) => response, Err(e) => e, }; let revanced_patches_filename = "revanced_patches.jar"; - let patches_download_response = match download_in_dir(tmp_dir.path(), patches_url.as_str(), revanced_patches_filename) { + let _patches_download_response = match download_in_dir(tmp_dir.path(), patches_url.as_str(), revanced_patches_filename) { Ok(response) => response, Err(e) => e, }; let revanced_integrations_filename = "integrations.apk"; - let integrations_download_response = match download_in_dir(tmp_dir.path(), integrations_url.as_str(), revanced_integrations_filename) { + let _integrations_download_response = match download_in_dir(tmp_dir.path(), integrations_url.as_str(), revanced_integrations_filename) { Ok(response) => response, Err(e) => e, };