From 4fef27d1755eb883cd7a81a04014ea3e0ceb5738 Mon Sep 17 00:00:00 2001 From: lidgren Date: Tue, 10 Aug 2010 11:23:56 +0000 Subject: [PATCH] Oops, removed debug code --- Lidgren.Network/NetPeer.Internal.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Lidgren.Network/NetPeer.Internal.cs b/Lidgren.Network/NetPeer.Internal.cs index 6aa4e97..782b01b 100644 --- a/Lidgren.Network/NetPeer.Internal.cs +++ b/Lidgren.Network/NetPeer.Internal.cs @@ -139,15 +139,13 @@ namespace Lidgren.Network m_receiveBuffer = new byte[m_configuration.ReceiveBufferSize]; m_sendBuffer = new byte[m_configuration.SendBufferSize]; - throw new Exception("borak!"); - // only set Running if everything succeeds m_status = NetPeerStatus.Running; LogVerbose("Initialization done"); } #if DEBUG - catch(Exception ex) + catch(Exception) { throw; }