From f355935e9011ff9de6d9731b4a317f8c4b4786df Mon Sep 17 00:00:00 2001 From: Isaac Paul Date: Sat, 26 Aug 2017 15:41:12 -0400 Subject: [PATCH] Changed private member format for consistency --- Hazel/Udp/UdpConnection.Fragmented.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hazel/Udp/UdpConnection.Fragmented.cs b/Hazel/Udp/UdpConnection.Fragmented.cs index c72576d..abea8c4 100644 --- a/Hazel/Udp/UdpConnection.Fragmented.cs +++ b/Hazel/Udp/UdpConnection.Fragmented.cs @@ -11,7 +11,7 @@ namespace Hazel.Udp /// The amount of data that can be put into a fragment. /// public int FragmentSize { get { return _fragmentSize; } } - int _fragmentSize = 65507 - 1 - 2 - 2 - 2; + int fragmentSize = 65507 - 1 - 2 - 2 - 2; /// /// The last fragmented message ID that was written. -- 2.39.5