fix: remove watcher_id fixme comment as fixed on master

This commit is contained in:
Alex 2019-05-20 11:56:55 +02:00
parent e8dd1e2d2c
commit cff39bc7cf
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ void Watcher::busAcquired(const Glib::RefPtr<Gio::DBus::Connection>& conn, Glib:
if (error != nullptr) {
// Don't print an error when a watcher is already present
if (error->code != 2) {
spdlog::error("Watcher {}: {}", watcher_id_, error->message); // FIXME: watcher_id_ is neither actually used nor initialized AFAICT
spdlog::error("Watcher {}: {}", watcher_id_, error->message);
}
g_error_free(error);
return;