We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3059e6a commit 3db50a2Copy full SHA for 3db50a2
src/annotation.rs
@@ -685,7 +685,7 @@ impl Annotation {
685
686
/// Removes data from the annotation, does not update any reverse indices!
687
pub(crate) fn remove_data(&mut self, set: AnnotationDataSetHandle, data: AnnotationDataHandle) {
688
- self.data.retain(|(s, d)| (*s != set && *d != data));
+ self.data.retain(|(s, d)| *s != set && *d != data);
689
}
690
691
/// Low-level method that returns raw data (handles) at specified index
0 commit comments