Skip to content

Commit

Permalink
fix: clippy lints rust 1.84.1 to 1.85.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mili committed Feb 20, 2025
1 parent f77625c commit 7855381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pumpkin-world/src/chunk/anvil.rs
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,8 @@ mod tests {

use crate::generation::{Seed, get_world_gen};
use crate::{
chunk::{ ChunkReadingError, anvil::AnvilChunkFormat},
chunks_io::{ChunkFileManager, ChunkIO, LoadedData},
chunk::anvil::AnvilChunkFile,
chunks_io::{ChunkFileManager, ChunkIO, LoadedData},
level::LevelFolder,
};

Expand Down
6 changes: 3 additions & 3 deletions pumpkin-world/src/chunk/linear.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use log::error;
use pumpkin_config::ADVANCED_CONFIG;
use pumpkin_util::math::vector2::Vector2;

use super::anvil::{chunk_to_bytes, CHUNK_COUNT, SUBREGION_BITS};
use super::anvil::{CHUNK_COUNT, SUBREGION_BITS, chunk_to_bytes};
use super::{ChunkData, ChunkReadingError, ChunkWritingError};

/// The signature of the linear file format
Expand Down Expand Up @@ -353,8 +353,8 @@ mod tests {

use crate::generation::{Seed, get_world_gen};
use crate::{
chunk::{ ChunkReadingError, linear::LinearChunkFormat},
chunk_io::{ChunkFileManager, ChunkIO, LoadedData},
chunk::linear::LinearFile,
chunks_io::{ChunkFileManager, ChunkIO, LoadedData},
level::LevelFolder,
};

Expand Down

0 comments on commit 7855381

Please sign in to comment.