From f70bc0180d0a330e32a1439e733eb7a9976ec388 Mon Sep 17 00:00:00 2001
From: Kai Koehne <kai.koehne@nokia.com>
Date: Fri, 18 Feb 2011 11:23:40 +0100
Subject: [PATCH] QmlDebug: Remove assert

Removing an object watch might fail if e.g. the app crashes in between.
---
 src/plugins/qmljsinspector/qmljsclientproxy.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/plugins/qmljsinspector/qmljsclientproxy.cpp b/src/plugins/qmljsinspector/qmljsclientproxy.cpp
index 989af9361cb..a33f31ba6bf 100644
--- a/src/plugins/qmljsinspector/qmljsclientproxy.cpp
+++ b/src/plugins/qmljsinspector/qmljsclientproxy.cpp
@@ -417,7 +417,6 @@ void ClientProxy::removeAllObjectWatches()
 {
     foreach (int watchedObject, m_objectWatches.keys())
         removeObjectWatch(watchedObject);
-    Q_ASSERT(m_objectWatches.count() == 0);
 }
 
 void ClientProxy::queryEngineContext(int id)
-- 
GitLab