Debugger: Remove unused ThreadsHandler::pidForGroupId

Change-Id: I3028a85246a8fb78bac7c99e77676341206e687f
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2018-08-30 14:20:48 +02:00
parent 06f3d2bf10
commit 06f3e959d3
2 changed files with 0 additions and 6 deletions

View File

@@ -296,11 +296,6 @@ void ThreadsHandler::setCurrentThread(const Thread &thread)
thread->update(); thread->update();
} }
QString ThreadsHandler::pidForGroupId(const QString &groupId) const
{
return m_pidForGroupId[groupId];
}
void ThreadsHandler::notifyGroupCreated(const QString &groupId, const QString &pid) void ThreadsHandler::notifyGroupCreated(const QString &groupId, const QString &pid)
{ {
m_pidForGroupId[groupId] = pid; m_pidForGroupId[groupId] = pid;

View File

@@ -81,7 +81,6 @@ public:
Thread currentThread() const; Thread currentThread() const;
Thread threadForId(const QString &id) const; Thread threadForId(const QString &id) const;
void setCurrentThread(const Thread &thread); void setCurrentThread(const Thread &thread);
QString pidForGroupId(const QString &groupId) const;
void updateThread(const ThreadData &threadData); void updateThread(const ThreadData &threadData);
void setThreads(const GdbMi &data); void setThreads(const GdbMi &data);