SshConnectionManager: s/break/continue

Probably just a thinko in the original code.

Change-Id: Ie089737a3501c5aede9a2234c10e4f1c1611d952
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Christian Kandeler
2014-12-18 14:15:12 +01:00
parent 1199a93fc0
commit 394c9dd550

View File

@@ -90,10 +90,10 @@ public:
continue; continue;
if (connection->thread() != QThread::currentThread()) if (connection->thread() != QThread::currentThread())
break; continue;
if (m_deprecatedConnections.contains(connection)) // we were asked to no longer use this one... if (m_deprecatedConnections.contains(connection)) // we were asked to no longer use this one...
break; continue;
m_acquiredConnections.append(connection); m_acquiredConnections.append(connection);
return connection; return connection;