aboutsummaryrefslogtreecommitdiff
path: root/src-tauri
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-03-23 00:07:26 +0100
committerGitHub <noreply@github.com>2023-03-22 23:07:26 +0000
commit7f25d130c1e4ec8f57d91f87cb5420696e9ed774 (patch)
treecd5ca482745e6547b7766243cff3804b921d59cd /src-tauri
parent5e096f84e59eae0ed6b7bb758149c491c87538a6 (diff)
downloadFlightCore-7f25d130c1e4ec8f57d91f87cb5420696e9ed774.tar.gz
FlightCore-7f25d130c1e4ec8f57d91f87cb5420696e9ed774.zip
fix: Remove unnecessary `.to_string()` (#230)
Thanks clippy <3
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/src/lib.rs2
-rw-r--r--src-tauri/src/platform_specific/windows.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
index 5bdc82c4..964039eb 100644
--- a/src-tauri/src/lib.rs
+++ b/src-tauri/src/lib.rs
@@ -385,7 +385,7 @@ pub fn get_enabled_mods(game_install: GameInstall) -> Result<serde_json::value::
// Parse JSON
let res: serde_json::Value = match serde_json::from_str(&data) {
Ok(result) => result,
- Err(err) => return Err(format!("Failed to read JSON due to: {}", err.to_string())),
+ Err(err) => return Err(format!("Failed to read JSON due to: {}", err)),
};
// Return parsed data
diff --git a/src-tauri/src/platform_specific/windows.rs b/src-tauri/src/platform_specific/windows.rs
index 21772b91..5d054808 100644
--- a/src-tauri/src/platform_specific/windows.rs
+++ b/src-tauri/src/platform_specific/windows.rs
@@ -18,7 +18,7 @@ pub fn origin_install_location_detection() -> Result<String, anyhow::Error> {
return Ok(game_path_str.to_string());
}
Err(err) => {
- println!("{}", err.to_string());
+ println!("{}", err);
continue; // Not a valid game path
}
}