Removes default value initializers
This commit is contained in:
parent
ff26dfa375
commit
f0a48ad431
19 changed files with 37 additions and 37 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue