Fixed warnings

This commit is contained in:
Garry Newman 2017-04-05 16:05:45 +01:00
parent 66f771fee2
commit 2fbbd66c45
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ public PlayersResponse GetPlayerList()
return pr;
}
catch ( SocketException e )
catch ( SocketException )
{
return null;
}
@ -347,7 +347,7 @@ private byte[] ReassemblePacket( List<byte[]> splitPackets, bool isCompressed, i
}
/// <summary>
/// Invert the Byte-order Mark of an value, used for compatibility between Little <-> Large BOM
/// Invert the Byte-order Mark of an value, used for compatibility between Little Large BOM
/// </summary>
/// <param name="value">The value to invert</param>
/// <returns>BOM-inversed value (if needed), otherwise the original value</returns>

View File

@ -138,7 +138,7 @@ public enum SendType : int
/// </summary>
UnreliableNoDelay = 1,
//// <summary>
/// <summary>
/// Reliable message send. Can send up to 1MB of data in a single message.
/// Does fragmentation/re-assembly of messages under the hood, as well as a sliding window for efficient sends of large chunks of data.
/// </summary>