diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 4f380535709f51f8bb9040d2e812062194f5a2ef..99ed718a440b70984b9ea8d730ea1b342ee02697 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -438,13 +438,11 @@ void GdbEngine::handleResponse(const QByteArray &buff)
                 invalidateSourcesList();
             } else if (asyncClass == "thread-group-added") {
                 // 7.1-symbianelf has "{id="i1"}"
-            } else if (asyncClass == "thread-group-started") {
-                // 7.1-symbianelf has "{id="i1",pid="42000"}"
             } else if (asyncClass == "thread-group-created"
                     || asyncClass == "thread-group-started") {
                 // Archer had only "{id="28902"}" at some point of 6.8.x.
-                // *-created seems to be standard nowadays, but in early
-                // 7.0.x, there was a *-started instead.
+                // *-started seems to be standard in 7.1, but in early
+                // 7.0.x, there was a *-created instead.
                 int progress = m_progress->progressValue();
                 m_progress->setProgressValue(qMin(70, progress + 1));
                 QByteArray id = result.findChild("id").data();