Skip to content

Commit

Permalink
fix: clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mili committed Feb 20, 2025
1 parent f3bfb48 commit 9a5c4d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions pumpkin-world/src/chunk/anvil.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ use pumpkin_config::ADVANCED_CONFIG;
use pumpkin_nbt::serializer::to_bytes;
use pumpkin_util::math::ceil_log2;
use pumpkin_util::math::vector2::Vector2;
use rayon::{
iter::{IntoParallelRefIterator, ParallelIterator},
slice::ParallelSliceMut,
};
use rayon::iter::{IntoParallelRefIterator, ParallelIterator};

use std::{
collections::HashSet,
Expand Down
1 change: 0 additions & 1 deletion pumpkin-world/src/chunk/linear.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use log::error;
use pumpkin_config::ADVANCED_CONFIG;
use pumpkin_util::math::vector2::Vector2;
use rayon::iter::{IntoParallelRefIterator, ParallelIterator};
use rayon::slice::ParallelSliceMut;

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

0 comments on commit 9a5c4d7

Please sign in to comment.