diff --git a/src/core/validation/mod.rs b/src/core/validation/mod.rs index ea90246..ffbd0c4 100644 --- a/src/core/validation/mod.rs +++ b/src/core/validation/mod.rs @@ -380,18 +380,3 @@ pub(crate) fn apply_rule_10402(annotation: &XmlElement, issues: &mut Vec) { - let annotation_elements = element.child_elements_filtered(|el| el.tag_name() == "annotation"); - - if annotation_elements.len() > 1 { - let message = format!( - "Multiple annotation elements found in <{0}>.", - element.tag_name() - ); - issues.push(SbmlIssue::new_error("10404", element, message)); - } -}