Mercurial > hg > orthanc
changeset 6153:92c5ad130204 attach-custom-data
removed unused variable: filesToDeleteCustomData
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 02 Jun 2025 16:24:29 +0200 |
parents | 1639adc016f4 |
children | 2ee32b4433a5 |
files | OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp Mon Jun 02 15:49:58 2025 +0200 +++ b/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp Mon Jun 02 16:24:29 2025 +0200 @@ -41,7 +41,6 @@ #include <stdio.h> #include <boost/lexical_cast.hpp> -static std::map<std::string, std::string> filesToDeleteCustomData; namespace Orthanc { @@ -2740,7 +2739,7 @@ // ReconstructMaindDicomTags uses LookupAttachment that needs revision and customData. Since we don't want to maintain a legacy version // of LookupAttachment, we modify the table now) - LOG(INFO) << "First Upgrading SQLite schema to support revision and customData in order to be able to reconstruct main dicom tags"; + LOG(INFO) << "First upgrading SQLite schema to support revision and customData to be able to reconstruct main DICOM tags"; std::string query; ServerResources::GetFileResource(query, ServerResources::INSTALL_REVISION_AND_CUSTOM_DATA); db_.Execute(query);