Skip to content

Commit

Permalink
Fix clippy lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
Esper89 committed May 6, 2024
1 parent e33a22f commit e14cb9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astro_mod_integrator/src/handlers/item_list_entries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use unreal_mod_manager::unreal_pak::{PakMemory, PakReader};

use crate::AstroIntegratorConfig;

#[allow(clippy::ptr_arg)]
#[allow(clippy::assigning_clones, clippy::ptr_arg)]
pub(crate) fn handle_item_list_entries(
_data: &(),
integrated_pak: &mut PakMemory,
Expand Down Expand Up @@ -104,7 +104,7 @@ pub(crate) fn handle_item_list_entries(
if array_property.name.get_content(|e| e == arr_name) {
item_types_property
.entry(entry_name.clone())
.or_insert_with(Vec::new)
.or_default()
.push((
i,
j,
Expand Down

0 comments on commit e14cb9d

Please sign in to comment.