diff options
| author | mat <git@matdoes.dev> | 2025-12-11 23:21:42 -1030 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-11 23:21:42 -1030 |
| commit | ca70e5e321a3c174c53d0650feed84db471ac30d (patch) | |
| tree | 43042fa40c2f3d7f30ea56e1ee84c59dcb13be66 /azalea-world/src | |
| parent | 918214e8ba4eae65daf5d2da17aa0022f2ae5212 (diff) | |
| download | azalea-drasl-ca70e5e321a3c174c53d0650feed84db471ac30d.tar.xz | |
enable str_to_string clippy lint
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/palette/container.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-world/src/palette/container.rs b/azalea-world/src/palette/container.rs index a10c5d78..a6c7454b 100644 --- a/azalea-world/src/palette/container.rs +++ b/azalea-world/src/palette/container.rs @@ -134,7 +134,7 @@ impl<S: PalletedContainerKind> PalettedContainer<S> { Err(e) => { warn!("Failed to create bit storage: {:?}", e); return Err(BufReadError::Custom( - "Failed to create bit storage".to_string(), + "Failed to create bit storage".to_owned(), )); } }; |
