Removes default value initializers

This commit is contained in:
Kamron Batman 2018-09-14 15:13:14 -07:00
parent ff26dfa375
commit f0a48ad431
19 changed files with 37 additions and 37 deletions

View file

@ -107,7 +107,7 @@ namespace Server {
private byte[] _Working = new byte[BUFFER_SIZE];
private byte[] _Buffer = new byte[BUFFER_SIZE];
private int _Index = 0;
private int _Index;
private object _sync = new object();
@ -226,7 +226,7 @@ namespace Server {
private byte[] _Working = new byte[BUFFER_SIZE];
private byte[] _Buffer = new byte[BUFFER_SIZE];
private int _Index = 0;
private int _Index;
private object _sync = new object();
@ -364,7 +364,7 @@ namespace Server {
private byte[] _Working = new byte[BUFFER_SIZE];
private byte[] _Buffer = new byte[BUFFER_SIZE];
private int _Index = 0;
private int _Index;
private object _sync = new object();
@ -483,7 +483,7 @@ namespace Server {
private byte[] _Working = new byte[BUFFER_SIZE];
private byte[] _Buffer = new byte[BUFFER_SIZE];
private int _Index = 0;
private int _Index;
private object _sync = new object();