From 2fd6004d1e2c79765e90fac68b2ed719de95c30d Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Fri, 30 Jul 2010 07:25:20 +0000 Subject: [PATCH] --- .../Cosmos.Debug.Common/CDebugger/DebugConnectorStream.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source2/Debug/Cosmos.Debug.Common/CDebugger/DebugConnectorStream.cs b/source2/Debug/Cosmos.Debug.Common/CDebugger/DebugConnectorStream.cs index 4c16ec63b..44d195106 100644 --- a/source2/Debug/Cosmos.Debug.Common/CDebugger/DebugConnectorStream.cs +++ b/source2/Debug/Cosmos.Debug.Common/CDebugger/DebugConnectorStream.cs @@ -48,12 +48,9 @@ namespace Cosmos.Debug.Common.CDebugger { protected override void PacketTracePoint(byte[] aPacket) { System.Windows.Forms.MessageBox.Show("Tracepoint: " + GetUInt32(aPacket, 0).ToString("X8")); - if (CmdTrace == null) { - System.Windows.Forms.MessageBox.Show("Null"); - } System.Windows.Forms.MessageBox.Show(mCurrentMsgType.ToString()); try { - CmdTrace(mCurrentMsgType, GetUInt32(aPacket, 0)); + CmdTrace(mCurrentMsgType, GetUInt32(aPacket, 0)); System.Windows.Forms.MessageBox.Show("Calling Next"); Next(1, PacketCommand); } catch (Exception e) {