From ca70e5e321a3c174c53d0650feed84db471ac30d Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 11 Dec 2025 23:21:42 -1030 Subject: enable str_to_string clippy lint --- azalea-protocol/src/address.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-protocol/src/address.rs') diff --git a/azalea-protocol/src/address.rs b/azalea-protocol/src/address.rs index a3e487a1..569e2488 100644 --- a/azalea-protocol/src/address.rs +++ b/azalea-protocol/src/address.rs @@ -75,7 +75,7 @@ impl TryFrom<&str> for ServerAddr { return Err(ServerAddrParseError); } let mut parts = string.split(':'); - let host = parts.next().ok_or(ServerAddrParseError)?.to_string(); + let host = parts.next().ok_or(ServerAddrParseError)?.to_owned(); // default the port to 25565 let port = parts.next().unwrap_or("25565"); let port = u16::from_str(port).ok().ok_or(ServerAddrParseError)?; -- cgit v1.2.3