Skip to content

Commit

Permalink
Fix clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskrause committed Aug 14, 2024
1 parent 2a4ec95 commit eb75a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exporter/saltxml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -405,12 +405,12 @@ where
// add all edge labels
for anno in output_annotations {
if anno.key.ns != "annis" {
self.write_label(&anno, "saltCore:SAnnotation")?;
self.write_label(anno, "saltCore:SAnnotation")?;
}
}
for anno in output_features {
if anno.key.ns != "annis" {
self.write_label(&anno, "saltCore:SFeature")?;
self.write_label(anno, "saltCore:SFeature")?;
}
}
self.xml.write(XmlEvent::end_element())?;
Expand Down

0 comments on commit eb75a81

Please sign in to comment.