From d7745b3c43bdf23a02ae031ad41285b236778800 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Thu, 11 Feb 2010 18:08:12 +0100 Subject: [PATCH] debugger: remove accidentally checked-in debugging code --- src/plugins/debugger/breakhandler.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 07b78a74e36..fe2ef9c27d0 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -336,11 +336,9 @@ void BreakHandler::clear() int BreakHandler::findBreakpoint(const BreakpointData &needle) { // Search a breakpoint we might refer to. - qDebug() << "NEEDLE: " << needle.toString(); for (int index = 0; index != size(); ++index) { const BreakpointData *data = at(index); // Clear hit. - qDebug() << " TEST: " << data->toString(); if (data->bpNumber == needle.bpNumber) return index; // At least at a position we were looking for. -- GitLab