# HG changeset patch # User Sebastien Jodogne # Date 1748874269 -7200 # Node ID 92c5ad1302042c05853be371dc3feef81d7d3bb3 # Parent 1639adc016f400701658d1cd9ea39f0175512c0a removed unused variable: filesToDeleteCustomData diff -r 1639adc016f4 -r 92c5ad130204 OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp --- 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 #include -static std::map 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);