Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 authored Apr 10, 2024
1 parent 969b84c commit fb0bba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json/src/de/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ where
},
) = e;
if bulk_data_uri.is_some() {
tracing::warn!("bulk data URI is not supported for InMemDicomObject");
tracing::warn!("bulk data URI is not supported for InMemDicomObject; skipping {}", tag);
} else {
obj.put(DataElement::new(tag, vr, value));
}
Expand Down Expand Up @@ -109,7 +109,7 @@ where
struct JsonDataElement<D> {
vr: VR,
value: Value<InMemDicomObject<D>, InMemFragment>,
// TODO: we just ignore this when deserializing with
// TODO(#470): we just ignore this when deserializing with
// DicomJson<InMemDicomObject>
// Handle this properly with a custom deserializer
bulk_data_uri: Option<BulkDataUri>,
Expand Down

0 comments on commit fb0bba6

Please sign in to comment.