Instance: eliminate FinishShutdownUpdate(), move code to destructor

This commit is contained in:
Max Kellermann
2019-02-15 18:20:11 +01:00
parent 99c23cf139
commit f70eb63879
3 changed files with 3 additions and 11 deletions

View File

@@ -31,6 +31,7 @@
#ifdef ENABLE_DATABASE
#include "db/DatabaseError.hxx"
#include "db/Interface.hxx"
#include "db/update/Service.hxx"
#include "storage/StorageInterface.hxx"
#ifdef ENABLE_SQLITE
@@ -53,6 +54,8 @@ Instance::Instance()
Instance::~Instance() noexcept
{
#ifdef ENABLE_DATABASE
delete update;
if (database != nullptr) {
database->Close();
delete database;