Remove a double send of eRunPacketSent event

I accidentaly added the send both to the base class and the derived class in my refactor. Fix
that.

llvm-svn: 278325
This commit is contained in:
Pavel Labath 2016-08-11 09:22:22 +00:00
parent c018e4d665
commit 4dbab21354
1 changed files with 0 additions and 2 deletions

View File

@ -3947,7 +3947,5 @@ void
GDBRemoteCommunicationClient::OnRunPacketSent(bool first) GDBRemoteCommunicationClient::OnRunPacketSent(bool first)
{ {
GDBRemoteClientBase::OnRunPacketSent(first); GDBRemoteClientBase::OnRunPacketSent(first);
if (first)
BroadcastEvent(eBroadcastBitRunPacketSent, NULL);
m_curr_tid = LLDB_INVALID_THREAD_ID; m_curr_tid = LLDB_INVALID_THREAD_ID;
} }