plugin/service: remove zero ref warning

Reloads don't play nice with it + it doesn't matter anyways
This commit is contained in:
2 * r + 2 * t 2025-09-09 20:48:13 +10:00
parent 717855c629
commit 2563430e3b

View file

@ -36,7 +36,6 @@ void Service::unref() {
{
QMutexLocker locker(&m_mutex);
if (m_refCount == 0) {
qWarning() << "ServiceRef::unref: attempted to unref service with no active refs";
return;
}
m_refCount--;