Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -46,29 +46,13 @@ namespace Server.Network {
private byte[] _buffer;
private int _length;
public byte[] Buffer {
get {
return _buffer;
}
}
public byte[] Buffer => _buffer;
public int Length {
get {
return _length;
}
}
public int Length => _length;
public int Available {
get {
return ( _buffer.Length - _length );
}
}
public int Available => ( _buffer.Length - _length );
public bool IsFull {
get {
return ( _length == _buffer.Length );
}
}
public bool IsFull => ( _length == _buffer.Length );
private Gram() {
}
@ -95,9 +79,7 @@ namespace Server.Network {
private static BufferPool m_UnusedBuffers = new BufferPool( "Coalesced", 2048, m_CoalesceBufferSize );
public static int CoalesceBufferSize {
get {
return m_CoalesceBufferSize;
}
get => m_CoalesceBufferSize;
set {
if ( m_CoalesceBufferSize == value )
return;
@ -129,17 +111,9 @@ namespace Server.Network {
private Gram _buffered;
public bool IsFlushReady {
get {
return ( _pending.Count == 0 && _buffered != null );
}
}
public bool IsFlushReady => ( _pending.Count == 0 && _buffered != null );
public bool IsEmpty {
get {
return ( _pending.Count == 0 && _buffered == null );
}
}
public bool IsEmpty => ( _pending.Count == 0 && _buffered == null );
public SendQueue() {
_pending = new Queue<Gram>();