From 3e196c65c4cc4d502f5a92f1a371e076c89f99a9 Mon Sep 17 00:00:00 2001 From: doguto Date: Fri, 19 Jun 2026 15:50:55 +0900 Subject: [PATCH] Fix remove duplicated vars in xml parsing --- src/xml_parsing.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/xml_parsing.cpp b/src/xml_parsing.cpp index b4a82e976..73e06dc33 100644 --- a/src/xml_parsing.cpp +++ b/src/xml_parsing.cpp @@ -806,9 +806,6 @@ TreeNode::Ptr XMLParser::PImpl::createNodeFromXML(const XMLElement* element, const std::string port_value = att->Value(); if(IsAllowedPortName(port_name)) { - const std::string port_name = att->Name(); - const std::string port_value = att->Value(); - if(manifest != nullptr) { auto port_model_it = manifest->ports.find(port_name);