diff OrthancFramework/Sources/DicomFormat/DicomMap.cpp @ 5790:a3d283f61304 find-refactoring

improved handling of DicomSequences in parent
author Alain Mazy <am@orthanc.team>
date Wed, 18 Sep 2024 09:34:52 +0200
parents 61c9e5df64d7
children a8055aebc6cb
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomFormat/DicomMap.cpp	Tue Sep 17 17:16:42 2024 +0200
+++ b/OrthancFramework/Sources/DicomFormat/DicomMap.cpp	Wed Sep 18 09:34:52 2024 +0200
@@ -739,21 +739,6 @@
     }
   }
 
-  void DicomMap::RemoveComputedTags(std::set<DicomTag>& tags)
-  {
-    std::set<DicomTag> tagsToRemove;
-
-    for (std::set<DicomTag>::const_iterator it = tags.begin(); it != tags.end(); ++it)
-    {
-      if (IsComputedTag(*it))
-      {
-        tagsToRemove.insert(*it);
-      }
-    }
-
-    Toolbox::RemoveSets(tags, tagsToRemove);
-  }
-
   bool DicomMap::HasOnlyComputedTags(const std::set<DicomTag>& tags)
   {
     if (tags.size() == 0)