Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerthox committed Dec 21, 2024
1 parent b69cefa commit 2c21959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reffect_internal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ impl Interface for Dummy {
}

#[inline]
fn get_skill_info(id: u32) -> Result<SkillInfo> {
fn get_skill_info(_id: u32) -> Result<SkillInfo> {
Err(Error::Disabled)
}

#[inline]
fn get_skill_icon(id: u32) -> Option<Texture> {
fn get_skill_icon(_id: u32) -> Option<Texture> {
None
}
}

0 comments on commit 2c21959

Please sign in to comment.