Skip to content

Commit

Permalink
[object] Clippy lint fix
Browse files Browse the repository at this point in the history
- elide lifetime parameter in impl DicomAttribute for FileMetaAttribute
  • Loading branch information
Enet4 committed Dec 7, 2024
1 parent 5b23b9a commit 0a8ccdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object/src/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ impl DicomValueType for FileMetaAttribute<'_> {
}
}

impl<'a> DicomAttribute for FileMetaAttribute<'a> {
impl DicomAttribute for FileMetaAttribute<'_> {
type Item<'b> = EmptyObject
where Self: 'b;
type PixelData<'b> = InMemFragment
Expand Down

0 comments on commit 0a8ccdc

Please sign in to comment.