1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-18 08:06:33 +09:00

Oops, removed debug code

This commit is contained in:
lidgren
2010-08-10 11:23:56 +00:00
parent 04b7647bfb
commit 4fef27d175

View File

@@ -139,15 +139,13 @@ namespace Lidgren.Network
m_receiveBuffer = new byte[m_configuration.ReceiveBufferSize]; m_receiveBuffer = new byte[m_configuration.ReceiveBufferSize];
m_sendBuffer = new byte[m_configuration.SendBufferSize]; m_sendBuffer = new byte[m_configuration.SendBufferSize];
throw new Exception("borak!");
// only set Running if everything succeeds // only set Running if everything succeeds
m_status = NetPeerStatus.Running; m_status = NetPeerStatus.Running;
LogVerbose("Initialization done"); LogVerbose("Initialization done");
} }
#if DEBUG #if DEBUG
catch(Exception ex) catch(Exception)
{ {
throw; throw;
} }